Sha256: cebbbeba2e44a5d6aa3185b6de01507f16a625782c9fe1841638d877e753328e
Contents?: true
Size: 1.21 KB
Versions: 4
Compression:
Stored size: 1.21 KB
Contents
Gem::Specification.new do |spec| spec.name = 'fix-command' spec.version = File.read('VERSION.semver').chomp spec.authors = ['Cyril Wack'] spec.email = ['contact@cyril.email'] spec.summary = 'Fix extension gem for the fix command.' spec.description = 'Provides the fix command to run specs.' spec.homepage = 'https://github.com/fixrb/fix-command' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^test/}) } spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_dependency 'fix', '~> 0.17.0' spec.add_development_dependency 'bundler', '~> 1.10' spec.add_development_dependency 'rake', '~> 10.4' spec.add_development_dependency 'yard', '~> 0.8' spec.add_development_dependency 'simplecov', '~> 0.10' spec.add_development_dependency 'rubocop', '~> 0.35' spec.add_development_dependency 'spectus', '~> 3.0' spec.cert_chain = ['certs/gem-fixrb-public_cert.pem'] private_key = File.expand_path('~/.ssh/gem-fixrb-private_key.pem') spec.signing_key = private_key if File.exist?(private_key) end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
fix-command-0.4.0 | fix-command.gemspec |
fix-command-0.3.0 | fix-command.gemspec |
fix-command-0.2.0 | fix-command.gemspec |
fix-command-0.1.3 | fix-command.gemspec |