CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Tue, 26 Aug 2025 00:55:08 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100601063206
location: https://web.archive.org/web/20100601063206/https://github.com/rspec/rspec
server-timing: captures_list;dur=0.487348, exclusion.robots;dur=0.040807, exclusion.robots.policy;dur=0.031758, esindex;dur=0.010911, cdx.remote;dur=4.606571, LoadShardBlock;dur=344.447371, PetaboxLoader3.datanode;dur=67.350514, PetaboxLoader3.resolve;dur=127.551276
x-app-server: wwwb-app224
x-ts: 302
x-tr: 376
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app224; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Tue, 26 Aug 2025 00:55:09 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Tue, 01 Jun 2010 06:32:05 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "f4f5efb32741b0d4079c39a552290140"
x-archive-orig-x-runtime: 34ms
x-archive-orig-content-length: 25249
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Tue, 01 Jun 2010 06:32:06 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Mon, 08 Mar 2010 11:57:31 GMT", ; rel="prev memento"; datetime="Mon, 10 May 2010 01:05:25 GMT", ; rel="memento"; datetime="Tue, 01 Jun 2010 06:32:06 GMT", ; rel="next memento"; datetime="Wed, 02 Jun 2010 12:29:48 GMT", ; rel="last memento"; datetime="Wed, 06 Aug 2025 10:31:35 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 51_16_20100601005239_crawl100-c/51_16_20100601063004_crawl101.arc.gz
server-timing: captures_list;dur=0.458032, exclusion.robots;dur=0.017928, exclusion.robots.policy;dur=0.008803, esindex;dur=0.009976, cdx.remote;dur=12.759758, LoadShardBlock;dur=731.283391, PetaboxLoader3.datanode;dur=560.261492, PetaboxLoader3.resolve;dur=363.746284, load_resource;dur=230.919663
x-app-server: wwwb-app224
x-ts: 200
x-tr: 1032
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
rspec's rspec at master - GitHub
rspec / rspec
- Source
- Commits
- Network (7)
- Wiki (7)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
rspec /
name | age | message | |
---|---|---|---|
![]() |
.document | Mon Jan 25 00:21:02 -0800 2010 | get rdoc working correctly [dchelimsky] |
![]() |
.gitignore | Thu Mar 04 06:54:20 -0800 2010 | store gemspec in git [dchelimsky] |
![]() |
License.txt | Mon Jan 25 00:21:02 -0800 2010 | get rdoc working correctly [dchelimsky] |
![]() |
README.markdown | Mon May 17 06:17:43 -0700 2010 | words [dchelimsky] |
![]() |
Rakefile | Sun May 16 20:03:56 -0700 2010 | change top-level module from Rspec to RSpec [dchelimsky] |
![]() |
VERSION | Wed May 26 22:17:23 -0700 2010 | bump version to 2.0.0.beta.9 [dchelimsky] |
![]() |
lib/ | Sun May 16 19:22:18 -0700 2010 | Change top-level namespace to RSpec [dchelimsky] |
![]() |
rspec.gemspec | Wed May 26 22:17:23 -0700 2010 | bump version to 2.0.0.beta.9 [dchelimsky] |
README.markdown
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.
Install
[sudo] gem install rspec --prerelease