CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Sun, 24 Aug 2025 20:59:43 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100309043726
location: https://web.archive.org/web/20100309043726/https://github.com/rspec/rspec-core/tree/2.0.0.a2
server-timing: captures_list;dur=0.752736, exclusion.robots;dur=0.027100, exclusion.robots.policy;dur=0.012252, esindex;dur=0.014253, cdx.remote;dur=26.050158, LoadShardBlock;dur=449.244717, PetaboxLoader3.datanode;dur=83.374495, PetaboxLoader3.resolve;dur=163.686709
x-app-server: wwwb-app212
x-ts: 302
x-tr: 499
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app212; 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: Sun, 24 Aug 2025 20:59:43 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Tue, 09 Mar 2010 04:37:26 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "bdf3ac37f335b2cdc3982ea6d26dfd54"
x-archive-orig-x-runtime: 240ms
x-archive-orig-content-length: 29400
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, 09 Mar 2010 04:37:26 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Tue, 09 Mar 2010 04:37:26 GMT", ; rel="memento"; datetime="Tue, 09 Mar 2010 04:37:26 GMT", ; rel="last memento"; datetime="Tue, 09 Mar 2010 04:37:26 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_14_20100309032947_crawl101-c/52_14_20100309043702_crawl101.arc.gz
server-timing: captures_list;dur=0.558494, exclusion.robots;dur=0.017352, exclusion.robots.policy;dur=0.008021, esindex;dur=0.035260, cdx.remote;dur=6.983189, LoadShardBlock;dur=132.634956, PetaboxLoader3.datanode;dur=91.709442, PetaboxLoader3.resolve;dur=139.219049, load_resource;dur=172.428260
x-app-server: wwwb-app212
x-ts: 200
x-tr: 375
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
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-core at 2.0.0.a2 - GitHub
This service is courtesy of Pledgie.
rspec / rspec-core
- Source
- Commits
- Network (6)
- Issues (5)
- Wiki (1)
- Graphs
-
Tag:
2.0.0.a2
click here to add a description
click here to add a homepage
Sending Request…
Enable Donations
Pledgie Donations
Once activated, we'll place the following badge in your repository's detail box:
Rspec-2 runner and formatters — Read more
name | age | message | |
---|---|---|---|
![]() |
.document | Loading commit data... ![]() |
|
![]() |
.gitignore | ||
![]() |
.treasure_map.rb | Sat Aug 29 07:59:59 -0700 2009 | Fixing one more beholder issue [spicycode] |
![]() |
License.txt | Mon Jun 29 09:06:59 -0700 2009 | Correcting the spelling of my name [spicycode] |
![]() |
README.markdown | ||
![]() |
Rakefile | ||
![]() |
TODO.markdown | Wed Sep 09 06:26:46 -0700 2009 | Adding behaviour -> example group to TODO list [spicycode] |
![]() |
bin/ | ||
![]() |
cucumber.yml | Fri Oct 16 08:40:52 -0700 2009 | Upgrading to cucumber 0.4.2, and noting dev dep... [spicycode] |
![]() |
example_specs/ | ||
![]() |
features-pending/ | ||
![]() |
features/ | ||
![]() |
lib/ | ||
![]() |
rspec-core.gemspec | ||
![]() |
script/ | Mon Jun 29 13:50:19 -0700 2009 | Spec->Rspec. Refactoring complete [spicycode] |
![]() |
spec/ | ||
![]() |
specs.watchr | Fri Jan 15 08:45:37 -0800 2010 | Updating watchr to use pretty format [spicycode] |
README.markdown
RSpec Core
See README.markdown at https://github.com/rspec/meta
Also see
Known Issues
Ruby-1.9
Due to changes in scoping rules in 1.9, classes defined inside example groups are not visible to the examples. For example:
describe "something" do
class Foo
end
it "does something" do
Foo.new
end
end
This runs without incident in ruby-1.8, but raises an uninitialized constant
error in ruby-1.9. We had solved this in rspec-1.x, but rspec-2 has a slightly
different object model, so this has (for the moment) reared its ugly head. We'll
certainly resolve this before rspec-core-2.0.0 (final) is released.
You can, of course, fully qualify the declaration and everything works fine:
describe "something" do
class ::Foo
end
it "does something" do
Foo.new
end
end