Sha256: 7cd27cd645814a27ea59aca6bae949030d71f7471f60905c451a3dfce8baea3b
Contents?: true
Size: 1.81 KB
Versions: 2
Compression:
Stored size: 1.81 KB
Contents
# -*- encoding: utf-8 -*- lib = ::File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'aruba/version' Gem::Specification.new do |s| s.name = 'aruba' s.version = Aruba::VERSION s.authors = ["Aslak Hellesøy", "David Chelimsky", "Mike Sassak", "Matt Wynne", "Jarl Friis", "Dennis Günnewig"] s.description = 'Extension for popular TDD and BDD frameworks like "Cucumber", "RSpec" and "Minitest" to make testing commandline applications meaningful, easy and fun.' s.summary = "aruba-#{s.version}" s.license = 'MIT' s.email = 'cukes@googlegroups.com' s.homepage = 'http://github.com/cucumber/aruba' s.add_runtime_dependency 'cucumber', '>= 1.3.19' s.add_runtime_dependency 'childprocess', '~> 0.8.0' s.add_runtime_dependency 'ffi', '~> 1.9.10' s.add_runtime_dependency 'rspec-expectations', '>= 2.99' s.add_runtime_dependency 'contracts', '~> 0.9' s.add_runtime_dependency 'thor', '~> 0.19' s.add_development_dependency 'bundler', '~> 1.11' s.rubygems_version = ">= 1.6.1" if Aruba::VERSION >= '1' s.required_ruby_version = '>= 1.9.3' else s.required_ruby_version = '>= 1.8.7' s.post_install_message = <<-EOS Use on ruby 1.8.7 * Make sure you add something like that to your `Gemfile`. Otherwise you will get cucumber > 2 and this will fail on ruby 1.8.7 gem 'cucumber', '~> 1.3.20' With aruba >= 1.0 there will be breaking changes. Make sure to read https://github.com/cucumber/aruba/blob/master/History.md for 1.0.0 EOS end s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.rdoc_options = ["--charset=UTF-8"] s.require_path = "lib" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
aruba-0.14.4 | aruba.gemspec |
aruba-0.14.3 | aruba.gemspec |