Skip to content

Commit

Permalink
Fix dependency exceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
whyayen committed Jan 16, 2022
1 parent bee1aed commit bfe9686
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
4 changes: 0 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,5 @@ gemspec

gem "rake", "~> 12.0"
gem "rspec", "~> 3.0"
gem "hashie"
gem "rest-client"
gem "addressable"
gem "activesupport"

gem "byebug", "~> 11.1", :groups => [:development, :test]
15 changes: 11 additions & 4 deletions ezpay-invoice.gemspec
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
require_relative 'lib/ezpay-invoice/version'
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ezpay-invoice/version'

Gem::Specification.new do |spec|
spec.name = "ezpay-invoice-sdk"
spec.name = "ezpay-invoice"
spec.version = EzpayInvoice::VERSION
spec.authors = ["Whyayen"]
spec.email = ["[email protected]"]

spec.summary = %q{The unofficial EzPay invoice ruby SDK.}
spec.description = %q{The unofficial EzPay invoice ruby SDK.}
spec.add_dependency 'rest-client', '~> 2.1.0'
spec.add_dependency 'hashie', '~> 5.0.0'
spec.add_dependency 'addressable', '~> 2.8.0'
spec.add_dependency 'activesupport', ['>= 5.0.0', '<= 7.0.1']

spec.summary = %q{The unofficial Ezpay invoice ruby SDK.}
spec.description = %q{The package would be able to issue invoice, invalid invoice on Ezpay}
spec.homepage = "https://github.com/whyayen/ezpay-invoice-sdk"
spec.license = "MIT"
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
Expand Down

0 comments on commit bfe9686

Please sign in to comment.