CARVIEW |
Select Language
HTTP/2 200
server: nginx
date: Thu, 28 Aug 2025 22:00:11 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Thu, 03 Jun 2010 23:15:21 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "47a6c841be5c61eabca37b422f210f3a"
x-archive-orig-x-runtime: 35ms
x-archive-orig-content-length: 25347
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: Thu, 03 Jun 2010 23:15:21 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="Wed, 02 Jun 2010 12:29:48 GMT", ; rel="memento"; datetime="Thu, 03 Jun 2010 23:15:21 GMT", ; rel="next memento"; datetime="Wed, 04 Aug 2010 10:16:15 GMT", ; rel="last memento"; datetime="Mon, 11 Aug 2025 04:03:10 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: 52_16_20100603192114_crawl103_IndexOnly-c/52_16_20100603231510_crawl101.arc.gz
server-timing: captures_list;dur=0.571581, exclusion.robots;dur=0.022263, exclusion.robots.policy;dur=0.013078, esindex;dur=0.011788, cdx.remote;dur=39.025886, LoadShardBlock;dur=167.172972, PetaboxLoader3.datanode;dur=155.994289, PetaboxLoader3.resolve;dur=192.808142, load_resource;dur=258.942499
x-app-server: wwwb-app201
x-ts: 200
x-tr: 532
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app201; 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=()
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 Jun 02 21:38:30 -0700 2010 | bump version to beta.10 [dchelimsky] |
![]() |
lib/ | Sun May 16 19:22:18 -0700 2010 | Change top-level namespace to RSpec [dchelimsky] |
![]() |
rspec.gemspec | Wed Jun 02 21:38:30 -0700 2010 | bump version to beta.10 [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