Sha256: 6be0275bca1015dfea2927b3d220d2d4bf658e9447847ba904e8b8456e29fe9a
Contents?: true
Size: 1.6 KB
Versions: 1
Compression:
Stored size: 1.6 KB
Contents
lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "rspec/time_stop/version" Gem::Specification.new do |spec| spec.name = "rspec-time_stop" spec.version = RSpec::TimeStop::VERSION spec.authors = ["sue445"] spec.email = ["sue445@sue445.net"] spec.summary = %q{Stop current time in example.} spec.description = %q{Stop current time in example.} spec.homepage = "https://github.com/sue445/rspec-time_stop" spec.license = "MIT" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = spec.homepage spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/master/CHANGELOG.md" spec.metadata["documentation_uri"] = "https://sue445.github.io/rspec-time_stop/" spec.metadata["rubygems_mfa_required"] = "true" # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. 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_dependency "activesupport", ">= 4.1.0" spec.add_dependency "rspec" spec.add_development_dependency "bundler", ">= 1.16" spec.add_development_dependency "coveralls_reborn" spec.add_development_dependency "rake" spec.add_development_dependency "simplecov" spec.add_development_dependency "yard" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rspec-time_stop-0.1.3 | rspec-time_stop.gemspec |