Sha256: a7e426b76641d553fb231689911300afce6aca8cf130ceb0d35aa9c4abf06d07
Contents?: true
Size: 1.04 KB
Versions: 3
Compression:
Stored size: 1.04 KB
Contents
## Contributing Install [bundler](http://gembundler.com/) and use it to install all the development dependencies: ```console gem install bundler bundle install ``` You should be able to run the tests now: ```console bundle exec rake ``` VCR uses [RSpec 2](http://github.com/rspec/rspec) for unit tests. The specs are written in a very "focused" style, where each spec is concerned only with exercising the object under test, using mocks as necessary. You can run the specs using `rake spec`. [Cucumber](http://cukes.info/) is used for end-to-end full stack integration tests that also function as VCR's documentation. ## Problems running bundle install? If you get an error while running `bundle install`, it may be one of the "extras" gems which are not required for development. Try installing it without these gems. ```console bundle install --without extras ``` If you are getting an error installing `rb-fsevent` gem, you may want to temporarily change the Gemfile to use the pre-release version of the gem. ```ruby gem 'rb-fsevent', '0.9.0.pre4' ```
Version data entries
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
vcr-2.9.0 | CONTRIBUTING.md |
social_url_stats-0.0.1 | vendor/ruby/1.9.1/gems/vcr-2.8.0/CONTRIBUTING.md |
vcr-2.8.0 | CONTRIBUTING.md |