Sha256: 5532cd0f52925c2b3e317f0a194145f4b6f4c88735d6a19b63d1537316e89350
Contents?: true
Size: 1.42 KB
Versions: 4
Compression:
Stored size: 1.42 KB
Contents
# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'nonnative/version' Gem::Specification.new do |spec| spec.name = 'nonnative' spec.version = Nonnative::VERSION spec.authors = ['Alejandro Falkowski'] spec.email = ['alexrfalkowski@gmail.com'] spec.summary = 'Allows you to keep using the power of ruby to test other systems' spec.description = spec.summary spec.homepage = 'https://github.com/alexfalkowski/nonnative' spec.license = 'Unlicense' spec.files = Dir.chdir(File.expand_path(__dir__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } end spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.required_ruby_version = ['>= 3.2.0', '< 4.0.0'] spec.metadata['rubygems_mfa_required'] = 'true' spec.add_dependency 'concurrent-ruby', '~> 1.0', '>= 1.0.5' spec.add_dependency 'cucumber', '>= 7', '< 10' spec.add_dependency 'get_process_mem', '~> 0.2.1' spec.add_dependency 'grpc', ['>= 1', '< 2'] spec.add_dependency 'puma', '~> 6.0' spec.add_dependency 'rest-client', '~> 2.1' spec.add_dependency 'rspec-benchmark', '~> 0.6.0' spec.add_dependency 'rspec-expectations', '~> 3.9', '>= 3.9.2' spec.add_dependency 'sinatra', '>= 2.0.8.1', '< 4' end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
nonnative-1.74.1 | nonnative.gemspec |
nonnative-1.74.0 | nonnative.gemspec |
nonnative-1.73.0 | nonnative.gemspec |
nonnative-1.72.0 | nonnative.gemspec |