Sha256: db4443d69aa99a3f1a4f67992c6e40e8eaada1390b6070dc8dee9977bebe29e3
Contents?: true
Size: 1.33 KB
Versions: 14
Compression:
Stored size: 1.33 KB
Contents
# -*- encoding: utf-8 -*- $LOAD_PATH.unshift File.expand_path("../lib", __FILE__) require "rspec/expectations/version" Gem::Specification.new do |s| s.name = "rspec-expectations" s.version = RSpec::Expectations::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-expectations" s.summary = "rspec-expectations-#{RSpec::Expectations::Version::STRING}" s.description = "rspec expectations (should[_not] and matchers)" 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" s.add_runtime_dependency 'diff-lcs', '>= 1.1.2' s.add_development_dependency 'cucumber', ">= 0.6.2" s.add_development_dependency 'aruba', ">= 0.1.1" s.add_development_dependency 'rspec-core', ">= #{RSpec::Expectations::Version::STRING}" s.add_development_dependency 'rspec-mocks', ">= #{RSpec::Expectations::Version::STRING}" end
Version data entries
14 entries across 14 versions & 2 rubygems