File: DEV-README.md

package info (click to toggle)
ruby-rspec 3.12.0c0e1m1s0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 6,752 kB
  • sloc: ruby: 69,818; sh: 1,861; makefile: 99
file content (28 lines) | stat: -rw-r--r-- 683 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
## Set up the dev environment

    git clone https://github.com/rspec/rspec-core.git
    cd rspec-core
    gem install bundler
    bundle install

Now you should be able to run any of:

    rake
    rake spec
    rake cucumber

Or, if you prefer to use the rspec and cucumber commands directly, you can either:

    bundle exec rspec

Or ...

    bundle install --binstubs
    bin/rspec

## Customize the dev environment

The Gemfile includes the gems you'll need to be able to run specs. If you want
to customize your dev enviroment with additional tools like guard or
ruby-debug, add any additional gem declarations to Gemfile-custom (see
Gemfile-custom.sample for some examples).