Gem::Specification.new do |spec| spec.name = "javonet-ruby-sdk" spec.version = File.read(File.expand_path("../VERSION", __FILE__)).chomp spec.summary = "Javonet SDK for Ruby" spec.description = "Javonet allows you to reference and use modules or packages written in (Java/Kotlin/Groovy/Clojure, C#/VB.NET, Ruby, Perl, Python, JavaScript/TypeScript) like they were created in your technology. It works on Linux/Windows and MacOS for applications created in JVM, CLR/Netcore, Perl, Python, Ruby, NodeJS, C++ or GoLang and gives you unparalleled freedom and flexibility with native performance in building your mixed-technologies products. Let it be accessing best AI or cryptography libraries, devices SDKs, legacy client modules, internal custom packages or anything from public repositories available on NPM, Nuget, PyPI, Maven/Gradle, RubyGems or GitHub. Get free from programming languages barriers today! For more information check out our guides at https://www.javonet.com/guides/v2/" spec.authors = ["SdNCenter Sp. z o. o."] spec.email = ["support@javonet.com"] spec.homepage = "https://javonet.com" spec.license = "MIT" spec.required_ruby_version = Gem::Requirement.new(">= 2.7") # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. spec.files = Dir.chdir(File.expand_path("..", __FILE__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } end binaries = Dir["lib/javonet-ruby-sdk/Binaries/**/*.*"] spec.files += binaries spec.files += ["lib"] spec.add_runtime_dependency "ffi", '= 1.16' spec.add_runtime_dependency "os", '~> 1.1' spec.add_runtime_dependency "securerandom", '~> 0.3.1' spec.add_development_dependency "bundler", '~> 2.5' spec.add_development_dependency "rake", '~> 13.2' spec.add_development_dependency "rspec", '~> 3.13' spec.add_development_dependency "rspec_junit_formatter", '~> 0.6' #spec.add_development_dependency "simplecov", '~> 0.22' #spec.add_development_dependency "simplecov-cobertura", '~> 2.1' spec.add_development_dependency "http", '~> 5.2' end