CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Tue, 19 Aug 2025 16:32:22 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100212152422
location: https://web.archive.org/web/20100212152422/https://github.com/dchelimsky/rspec-dev
server-timing: captures_list;dur=0.709549, exclusion.robots;dur=0.021819, exclusion.robots.policy;dur=0.009120, esindex;dur=0.012774, cdx.remote;dur=21.203071, LoadShardBlock;dur=3002.794791, PetaboxLoader3.datanode;dur=122.600263, PetaboxLoader3.resolve;dur=150.683971
x-app-server: wwwb-app221
x-ts: 302
x-tr: 3060
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app221; 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, 19 Aug 2025 16:32:23 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Fri, 12 Feb 2010 15:24:22 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "ecfb60841d3c2f03ad61d84e11728a2c"
x-archive-orig-x-runtime: 259ms
x-archive-orig-content-length: 29355
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: Fri, 12 Feb 2010 15:24:22 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Mon, 26 May 2008 06:24:01 GMT", ; rel="prev memento"; datetime="Sat, 06 Feb 2010 20:40:45 GMT", ; rel="memento"; datetime="Fri, 12 Feb 2010 15:24:22 GMT", ; rel="next memento"; datetime="Tue, 16 Mar 2010 23:22:49 GMT", ; rel="last memento"; datetime="Sun, 10 Jun 2018 23:52:59 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_14_20100212111428_crawl100-c/51_14_20100212152124_crawl101.arc.gz
server-timing: captures_list;dur=0.587007, exclusion.robots;dur=0.017038, exclusion.robots.policy;dur=0.007637, esindex;dur=0.014408, cdx.remote;dur=45.948721, LoadShardBlock;dur=241.299445, PetaboxLoader3.datanode;dur=87.563973, PetaboxLoader3.resolve;dur=256.871486, load_resource;dur=213.312877
x-app-server: wwwb-app221
x-ts: 200
x-tr: 592
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
dchelimsky's rspec-dev at master - GitHub
This service is courtesy of Pledgie.
dchelimsky / rspec-dev
- Source
- Commits
- Network (14)
- Issues (0)
- Downloads (4)
- Wiki (3)
- Graphs
-
Branch:
master
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:
Resources for rspec developers/contributors — Read more
commit b0455e9a75feed05b1d3004b3d6312aef20e6db0
tree a952a032f079aee78b1c686ad24a9d025fb335aa
parent 26856b49f4d9628cbb84464d3651d1bd347f9062
tree a952a032f079aee78b1c686ad24a9d025fb335aa
parent 26856b49f4d9628cbb84464d3651d1bd347f9062
README.txt
= rspec-dev * https://rspec.info * https://github.com/dchelimsky/rspec-dev/wikis * mailto:rspec-devel@rubyforge.org == DESCRIPTION: This project is for RSpec developers/contributors. == INSTALL: git clone git://github.com/dchelimsky/rspec-dev.git cd rspec-dev cp repos.yml.sample repos.yml Take a look at repos.yml, which is used to configure all of the other git repositories that you'll need to do rspec-rails development. The sample file is configured to point to public github urls for each repository. If you have forks of any of the repos, or if you are an rspec core committer, change the urls accordingly so that you'll be able to seamlessly push to github. Once that's confifigured: rake git:update == RUNNING SPECS: In order to run RSpec's full suite of specs (rake pre_commit) you must install the following gems: * cucumber # BDD framework for automating scenarios * diff-lcs # Required if you use the --diff switch * flexmock # Mocking/stubbing framework * heckle # Required if you use the --heckle switch * hoe # Required in order to make releases at RubyForge * mocha # Mocking/stubbing framework * nokogiri # Used for parsing HTML from the HTML output formatter in RSpec's own specs * rake # Runs the build script * rcov # Verifies that the code is 100% covered by specs * rr # Mocking/stubbing framework If you're on windows, you'll also need: * win32console # Required by the --colour switch if you're on Windows You can easily install all gems by using geminstaller. sudo gem install geminstaller cd /path/to/rspec-dev sudo geminstaller Once those are all installed, you should be able to run the suite with the following steps: cd /path/to/rspec-dev cd example_rails_app export RSPEC_RAILS_VERSION=2.3.2 rake rspec:generate_sqlite3_config cd .. rake pre_commit The rake pre_commit command runs all the specs and cucumber scenarios for rspec, and then for rspec-rails. The rspec-rails specs are run against all of the supported versions of rails defined in pre_commit/lib/pre_commit/rspec-rails.rb, near the top. Note that RSpec itself - once built - doesn't have any dependencies outside the Ruby core and stdlib - with a few exceptions: * The spec command line uses diff-lcs when --diff is specified. * The spec command line uses heckle when --heckle is specified. * The Spec::Rake::SpecTask needs RCov if RCov is enabled in the task. == LICENSE: (The MIT License) Copyright (c) 2005-2008 The RSpec Development Team 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.