Sha256: 726c03b4d7ca8ff902d47ecdefcd7e0416ffe5dfb1bcab3534944be89d44ce20
Contents?: true
Size: 1.8 KB
Versions: 1
Compression:
Stored size: 1.8 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{Description Language Specification and Execution Engine} spec.description = %q{ 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. } spec.homepage = 'https://github.com/jnyman/lucid' spec.licenses = %w(MIT) spec.requirements << 'Gherkin, RSpec' spec.files = `git ls-files -z`.split("\x0") spec.test_files = spec.files.grep(%r{^(test|spec|features|specs)/}) 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.8.29' spec.add_development_dependency 'bundler', '~> 1.7' spec.add_development_dependency 'rake', '~> 10.0' spec.add_runtime_dependency 'builder', '~> 3.2.2' spec.add_runtime_dependency 'multi_json', '~> 1.8' spec.add_runtime_dependency 'gherkin', '~> 2.12' spec.add_runtime_dependency 'rspec', '~> 3.0' 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
lucid-0.5.1 | lucid.gemspec |