зеркало из
https://github.com/glebtv/yookassa.git
synced 2026-08-28 15:16:18 +03:00
29 строки
923 B
Ruby
29 строки
923 B
Ruby
# frozen_string_literal: true
|
|
|
|
lib = File.expand_path("lib", __dir__)
|
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
require "yookassa/version"
|
|
|
|
Gem::Specification.new do |spec|
|
|
spec.name = "yookassa"
|
|
spec.version = Yookassa::VERSION
|
|
spec.authors = "Andrey Paderin"
|
|
spec.email = "andy.paderin@gmail.com"
|
|
|
|
spec.summary = "Yookassa API SDK for Ruby"
|
|
spec.homepage = "https://github.com/paderinandrey/yookassa"
|
|
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 = ">= 3.3"
|
|
|
|
spec.add_runtime_dependency "dry-struct"
|
|
spec.add_runtime_dependency "dry-validation"
|
|
spec.add_runtime_dependency "rs-httpclient", "= 3.0.0.beta1"
|
|
end
|