Sha256: 6d2f628f234d2d8c0a23656ebe0c3a06f0df1c97e47aefd66188632589287c42
Contents?: true
Size: 1.39 KB
Versions: 2
Compression:
Stored size: 1.39 KB
Contents
lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "test_spec/version" require "date" Gem::Specification.new do |spec| spec.name = "test_spec" spec.version = TestSpec::VERSION spec.date = Date.today.strftime("%Y-%m-%d") spec.authors = ["Jeff Nyman"] spec.email = ["jeffnyman@gmail.com"] spec.summary = %q{Test and Data Condition DSL for RSpec} spec.description = %q{Test and Data Condition DSL for RSpec} spec.homepage = "https://github.com/jeffnyman/test_spec" spec.license = "MIT" spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } end spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.17" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" spec.add_development_dependency "simplecov" spec.add_development_dependency "rubocop" spec.add_development_dependency "pry" spec.post_install_message = %{ (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) TestSpec #{TestSpec::VERSION} has been installed. (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) } end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
test_spec-1.0.0 | test_spec.gemspec |
test_spec-0.1.0 | test_spec.gemspec |