Sha256: 8a91f8ab352ec669bc32b295b8c9b71bd82a9f7fcc5f2a646c3bf0500dfa4244
Contents?: true
Size: 927 Bytes
Versions: 2
Compression:
Stored size: 927 Bytes
Contents
# -*- encoding: utf-8 -*- $LOAD_PATH.unshift File.expand_path("../lib", __FILE__) require "rspec/core/version" Gem::Specification.new do |s| s.name = "rspec-core" s.version = RSpec::Core::Version::STRING s.platform = Gem::Platform::RUBY s.authors = ["Chad Humphries", "David Chelimsky"] s.email = "rspec-users@rubyforge.org;" s.homepage = "http://github.com/rspec" s.summary = "rspec-core-#{RSpec::Core::Version::STRING}" s.description = "BDD for Ruby. RSpec runner and example groups." s.rubygems_version = "1.3.7" s.rubyforge_project = "rspec" s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.extra_rdoc_files = [ "README.md" ] s.rdoc_options = ["--charset=UTF-8"] s.require_path = "lib" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rspec-core-2.6.0.rc4 | rspec-core.gemspec |
rspec-core-2.6.0.rc2 | rspec-core.gemspec |