Sha256: 116e19f8ec113fcb281bf75a38da384d6a38d75cfe8b86480d6df7a4393b4ec0
Contents?: true
Size: 1.81 KB
Versions: 3
Compression:
Stored size: 1.81 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'lucid/platform' Gem::Specification.new do |spec| spec.name = 'lucid' spec.version = Lucid::VERSION spec.author = 'Jeff Nyman' spec.email = 'jeffnyman@gmail.com' spec.summary = %q{Test Description Language Specification and Execution Engine} spec.description = <<-EOF Lucid is a test framework that is designed to treat testing as a design activity by allowing requirements to be defined as tests. Those tests can then be executed via an automation layer. This is the basis of creating executable specifications. EOF spec.homepage = 'https://github.com/jnyman/lucid' spec.licenses = %w(MIT) spec.platform = Gem::Platform::RUBY spec.files = `git ls-files -z`.split("\x0") spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.require_paths = %w(lib) spec.required_ruby_version = '>= 1.9.3' spec.required_rubygems_version = '>= 1.6.1' spec.add_development_dependency 'bundler', '~> 1.5' spec.add_development_dependency 'rake' spec.add_runtime_dependency 'builder', '>= 3.2.2' spec.add_runtime_dependency 'multi_json', '>= 1.8.0', '< 2.0' spec.add_runtime_dependency 'gherkin', '>= 2.12.0' spec.add_runtime_dependency 'rspec', '>= 2.14' spec.post_install_message = %{ (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) Lucid #{Lucid::VERSION} has been installed. Run the following command to get help: lucid --help Information on Lucid can be found under the 'lucid' category at: http://testerstories.com/category/lucid/ (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) } end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
lucid-0.4.1 | lucid.gemspec |
lucid-0.4.0 | lucid.gemspec |
lucid-0.3.3 | lucid.gemspec |