rspec-2.14.1/0000755000004100000410000000000012176750414012752 5ustar www-datawww-datarspec-2.14.1/License.txt0000644000004100000410000000224512176750414015100 0ustar www-datawww-data(The MIT License) Copyright (c) 2009 Chad Humphries, David Chelimsky Copyright (c) 2006 David Chelimsky, The RSpec Development Team Copyright (c) 2005 Steven Baker Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. rspec-2.14.1/README.md0000644000004100000410000000271512176750414014236 0ustar www-datawww-data# RSpec-2 Behaviour Driven Development for Ruby # Description rspec-2.x is a meta-gem, which depends on the rspec-core, rspec-expectations and rspec-mocks gems. Each of these can be installed separately and actived in isolation with the `gem` command. Among other benefits, this allows you to use rspec-expectations, for example, in Test::Unit::TestCase if you happen to prefer that style. Conversely, if you like RSpec's approach to declaring example groups and examples (`describe` and `it`) but prefer Test::Unit assertions and mocha, rr or flexmock for mocking, you'll be able to do that without having to load the components of rspec that you're not using. ## Documentation ### rspec-core * [Cucumber features](http://relishapp.com/rspec/rspec-core) * [RDoc](http://rubydoc.info/gems/rspec-core/frames) ### rspec-expectations * [Cucumber features](http://relishapp.com/rspec/rspec-expectations) * [RDoc](http://rubydoc.info/gems/rspec-expectations/frames) ### rspec-mocks * [Cucumber features](http://relishapp.com/rspec/rspec-mocks) * [RDoc](http://rubydoc.info/gems/rspec-mocks/frames) ## Install gem install rspec ## Contribute * [http://github.com/rspec/rspec-dev](http://github.com/rspec/rspec-dev) ## Also see * [http://github.com/rspec/rspec-core](http://github.com/rspec/rspec-core) * [http://github.com/rspec/rspec-expectations](http://github.com/rspec/rspec-expectations) * [http://github.com/rspec/rspec-mocks](http://github.com/rspec/rspec-mocks) rspec-2.14.1/metadata.yml0000644000004100000410000000442712176750414015264 0ustar www-datawww-data--- !ruby/object:Gem::Specification name: rspec version: !ruby/object:Gem::Version prerelease: version: 2.14.1 platform: ruby authors: - Steven Baker - David Chelimsky autorequire: bindir: bin cert_chain: [] date: 2013-07-11 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency version_requirements: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: 2.14.0 none: false prerelease: false name: rspec-core requirement: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: 2.14.0 none: false type: :runtime - !ruby/object:Gem::Dependency version_requirements: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: 2.14.0 none: false prerelease: false name: rspec-expectations requirement: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: 2.14.0 none: false type: :runtime - !ruby/object:Gem::Dependency version_requirements: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: 2.14.0 none: false prerelease: false name: rspec-mocks requirement: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: 2.14.0 none: false type: :runtime description: BDD for Ruby email: rspec-users@rubyforge.org executables: [] extensions: [] extra_rdoc_files: - README.md files: - lib/rspec.rb - lib/rspec/version.rb - License.txt - README.md homepage: http://github.com/rspec licenses: - MIT post_install_message: rdoc_options: - --charset=UTF-8 require_paths: - lib required_ruby_version: !ruby/object:Gem::Requirement requirements: - - ! '>=' - !ruby/object:Gem::Version version: '0' segments: - 0 hash: -3009817662952132849 none: false required_rubygems_version: !ruby/object:Gem::Requirement requirements: - - ! '>=' - !ruby/object:Gem::Version version: '0' segments: - 0 hash: -3009817662952132849 none: false requirements: [] rubyforge_project: rspec rubygems_version: 1.8.24 signing_key: specification_version: 3 summary: rspec-2.14.1 test_files: [] rspec-2.14.1/lib/0000755000004100000410000000000012176750414013520 5ustar www-datawww-datarspec-2.14.1/lib/rspec.rb0000644000004100000410000000005612176750414015162 0ustar www-datawww-datarequire 'rspec/core' require 'rspec/version' rspec-2.14.1/lib/rspec/0000755000004100000410000000000012176750414014634 5ustar www-datawww-datarspec-2.14.1/lib/rspec/version.rb0000644000004100000410000000012212176750414016641 0ustar www-datawww-datamodule RSpec # :nodoc: module Version # :nodoc: STRING = '2.14.1' end end