Sha256: 140e8d8f590f7b3f6105f0d45ed241a43f7d0aea8b210554f8b1047e9ec7f6e2
Contents?: true
Size: 1.03 KB
Versions: 14
Compression:
Stored size: 1.03 KB
Contents
# -*- encoding: utf-8 -*- $LOAD_PATH.unshift File.expand_path("../lib", __FILE__) require "rspec/version" Gem::Specification.new do |s| s.name = "rspec" s.version = RSpec::Version::STRING s.platform = Gem::Platform::RUBY s.authors = ["David Chelimsky", "Chad Humphries"] s.email = "dchelimsky@gmail.com;chad.humphries@gmail.com" s.homepage = "http://github.com/rspec/rspec" s.summary = "rspec-#{RSpec::Version::STRING}" s.description = "Meta-gem that depends on the other rspec gems" 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.markdown" ] s.rdoc_options = ["--charset=UTF-8"] s.require_path = "lib" %w[core expectations mocks].each do |name| s.add_runtime_dependency "rspec-#{name}", RSpec::Version::STRING end end
Version data entries
14 entries across 14 versions & 2 rubygems