Sha256: 66161b97bd93ecf7ee141759806e873c8464e12ef3fcb2ab6641737e29ccfac6
Contents?: true
Size: 1.54 KB
Versions: 1
Compression:
Stored size: 1.54 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'scribal/version' Gem::Specification.new do |spec| spec.name = 'scribal' spec.version = Scribal::VERSION spec.authors = ['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/scribal' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = %w(MIT) spec.requirements << 'Gherkin, RSpec' spec.required_ruby_version = '>= 2.0.0' 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 'gherkin', '~> 2.12' spec.add_runtime_dependency 'rspec', '~> 3.1' spec.post_install_message = %{ (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) Scribal #{Scribal::VERSION} has been installed. (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) } end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
scribal-0.0.1 | scribal.gemspec |