paratika.gemspec 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. # frozen_string_literal: true
  2. require_relative "lib/paratika/version"
  3. Gem::Specification.new do |spec|
  4. spec.name = "paratika"
  5. spec.version = Paratika::VERSION
  6. spec.authors = ["Mehmet Aydoğdu"]
  7. spec.email = ["mehmet@akillibulut.net"]
  8. spec.summary = "Paratika is a payment gateway for Turkey."
  9. spec.description = "AKILLI BULUT is developing this gem and not responsible for any security issues."
  10. spec.homepage = "https://git.akillibulut.net/AKILLIBULUT/Paratika"
  11. spec.license = "MIT"
  12. spec.required_ruby_version = ">= 2.6.0"
  13. spec.metadata["allowed_push_host"] = "https://git.akillibulut.net/AKILLIBULUT/Paratika"
  14. spec.metadata["homepage_uri"] = spec.homepage
  15. spec.metadata["source_code_uri"] = "https://git.akillibulut.net/AKILLIBULUT/Paratika"
  16. spec.metadata["changelog_uri"] = "https://git.akillibulut.net/AKILLIBULUT/Paratika"
  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. # For more information and examples about making a new gem, check out our
  30. # guide at: https://bundler.io/guides/creating_gem.html
  31. end