Skip to content

Commit

Permalink
[RIS-1259] Fix errors raised by gem builder (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
trooney-himama authored Feb 6, 2024
1 parent 0f5019e commit c62fa42
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions bambora-client.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ require 'bambora/client/version'
Gem::Specification.new do |spec|
spec.name = 'bambora-client'
spec.version = Bambora::Client::VERSION
spec.authors = ['Cassidy K']
spec.email = ['[email protected]', '[email protected]']
spec.authors = ['HiMama']
spec.email = ['[email protected]']

spec.summary = 'A thread-safe client for the Bambora/Beanstream API.'
spec.description = 'The official beanstream-ruby gem is not thread-safe. This thread-safe client works in '\
Expand Down Expand Up @@ -40,14 +40,14 @@ Gem::Specification.new do |spec|
spec.required_ruby_version = '>= 3.0.5'

spec.add_dependency 'faraday', '~> 2.0.1'
spec.add_dependency 'faraday-excon'
spec.add_dependency 'faraday-multipart'
spec.add_dependency 'faraday-excon', '~> 2.1.0'
spec.add_dependency 'faraday-multipart', '~> 1.0.0'
spec.add_dependency 'gyoku', '~> 1.0'
spec.add_dependency 'multiparty', '~> 0'

spec.add_development_dependency 'bundler', '~> 2'
spec.add_development_dependency 'pry'
spec.add_development_dependency 'pry-byebug'
spec.add_development_dependency 'pry', '~> 0.14.0'
spec.add_development_dependency 'pry-byebug', '~> 3.8.0'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'rspec_junit_formatter', '~> 0.4.1'
Expand Down

0 comments on commit c62fa42

Please sign in to comment.