payment.gemspec 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # frozen_string_literal: true
  2. require_relative "lib/payment/version"
  3. Gem::Specification.new do |spec|
  4. spec.name = "payment"
  5. spec.version = Payment::VERSION
  6. spec.authors = ["Mehmet Aydoğdu"]
  7. spec.email = ["mehmet@akillibulut.net"]
  8. spec.summary = "Payment is a wrapper library."
  9. spec.description = "AKILLI BULUT is developing this gem and not responsible for any security issues."
  10. spec.homepage = "https://git.akillibulut.net/AKILLIBULUT/Payment"
  11. spec.license = "MIT"
  12. spec.required_ruby_version = ">= 2.6.0"
  13. spec.metadata["allowed_push_host"] = "https://git.akillibulut.net/AKILLIBULUT/Payment"
  14. spec.metadata["homepage_uri"] = spec.homepage
  15. spec.metadata["source_code_uri"] = "https://git.akillibulut.net/AKILLIBULUT/Payment"
  16. spec.metadata["changelog_uri"] = "https://git.akillibulut.net/AKILLIBULUT/Payment"
  17. # Specify which files should be added to the gem when it is released.
  18. # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  19. spec.files = Dir.chdir(__dir__) do
  20. `git ls-files -z`.split("\x0").reject do |f|
  21. (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
  22. end
  23. end
  24. spec.bindir = "exe"
  25. spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
  26. spec.require_paths = ["lib"]
  27. # Uncomment to register a new dependency of your gem
  28. spec.add_dependency "activesupport", ">= 7.0"
  29. spec.add_dependency "paratika", "~> 1.0"
  30. spec.add_dependency "steep"
  31. # For more information and examples about making a new gem, check out our
  32. # guide at: https://bundler.io/guides/creating_gem.html
  33. end