Sha256: 9922e6a888c15513685f9e5a5a8682b0a12f26602d79cc2fce764ad06f2414de
Contents?: true
Size: 1.59 KB
Versions: 1
Compression:
Stored size: 1.59 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'specify/version' Gem::Specification.new do |spec| spec.name = 'specify' spec.version = Specify::VERSION spec.authors = ['Jeff Nyman'] spec.email = ['jeffnyman@gmail.com'] spec.summary = %q{Description Language Specification and Execution Engine} spec.description = %q{ Specify 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/specify' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.required_ruby_version = '>= 2.0' spec.required_rubygems_version = '>= 1.8.29' spec.add_development_dependency 'bundler', '~> 1.10' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'rspec' spec.add_development_dependency 'pry' spec.add_development_dependency 'simplecov' spec.add_development_dependency 'rubocop' spec.post_install_message = %{ (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) Specify #{Specify::VERSION} has been installed. (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) } end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
specify-0.10.2 | specify.gemspec |