1
0
зеркало из https://github.com/glebtv/yookassa.git synced 2026-08-28 15:16:18 +03:00
Files
yookassa/yandex-checkout.gemspec
Andrey Paderin 5b6fac0dab initial commit
2019-06-02 04:08:03 +03:00

32 строки
1.2 KiB
Ruby

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'yandex-checkout/version'
Gem::Specification.new do |spec|
spec.name = 'yandex-checkout'
spec.version = YandexCheckout::VERSION
spec.authors = 'Andrey Paderin'
spec.email = 'andy.paderin@gmail.com'
spec.summary = 'This product is used for managing payments under The Yandex.Checkout API For usage by those who implemented Yandex.Checkout using the API method.'
spec.homepage = 'https://github.com/paderinandrey/yandex-checkout'
spec.license = 'MIT'
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
spec.test_files = spec.files.grep(/^spec/)
spec.extra_rdoc_files = Dir['README.md', 'LICENSE', 'CHANGELOG.md']
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.5'
spec.add_runtime_dependency 'evil-client', '~> 3.0'
spec.add_development_dependency 'rake', '>= 10.0'
spec.add_development_dependency 'rspec', '~> 3.5'
spec.add_development_dependency 'rubocop', '~> 0.71'
spec.add_development_dependency 'simplecov', '~> 0.16'
spec.add_development_dependency 'webmock', '~> 3.5'
end