-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update CONTRIBUTING.md about Gemfile.local * Add docs for VSCode users * Add rspec binstub and sample launch tasks
- Loading branch information
1 parent
878f812
commit 4c09cb7
Showing
6 changed files
with
144 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#!/usr/bin/env ruby | ||
# frozen_string_literal: true | ||
|
||
# | ||
# This file was generated by Bundler. | ||
# | ||
# The application 'rspec' is installed as part of a gem, and | ||
# this file is here to facilitate running it. | ||
# | ||
|
||
require "pathname" | ||
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile.local", | ||
Pathname.new(__FILE__).realpath) | ||
|
||
bundle_binstub = File.expand_path("../bundle", __FILE__) | ||
|
||
if File.file?(bundle_binstub) | ||
if File.read(bundle_binstub, 300) =~ /This file was generated by Bundler/ | ||
load(bundle_binstub) | ||
else | ||
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run. | ||
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.") | ||
end | ||
end | ||
|
||
require "rubygems" | ||
require "bundler/setup" | ||
|
||
load Gem.bin_path("rspec-core", "rspec") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
## Pre-requisites | ||
|
||
### Ruby Extension | ||
|
||
Install and configure the | ||
[ruby extension](https://marketplace.visualstudio.com/items?itemName=rebornix.Ruby) | ||
|
||
### Use `debase` and `ruby-debug-ide` gems locally | ||
|
||
Make sure to use a `Gemfile.local` file with `debase` and `ruby-debug-ide` gems. | ||
|
||
~~~ruby | ||
# Include the regular Gemfile | ||
eval File.read('Gemfile') | ||
|
||
group :development do | ||
gem 'debase', require: false | ||
gem 'ruby-debug-ide', require: false | ||
end | ||
~~~ | ||
|
||
Execute `bundle config set --local gemfile Gemfile.local` to use it per default, | ||
then `bundle install`. | ||
|
||
## Sample launch.json | ||
|
||
The following `launch.json` - to be placed in the `.vscode` folder - allows to use | ||
VSCode debugging features like **breakpoints** and **watches**. | ||
|
||
```json | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Cucumber", | ||
"type": "Ruby", | ||
"request": "launch", | ||
"useBundler": true, | ||
"cwd": "${workspaceRoot}", | ||
"program": "${workspaceRoot}/bin/cucumber", | ||
"internalConsoleOptions": "openOnSessionStart" | ||
}, | ||
{ | ||
"name": "Cucumber current feature file", | ||
"type": "Ruby", | ||
"request": "launch", | ||
"useBundler": true, | ||
"cwd": "${workspaceRoot}", | ||
"program": "${workspaceRoot}/bin/cucumber", | ||
"args": ["${file}"], | ||
"internalConsoleOptions": "openOnSessionStart" | ||
}, | ||
{ | ||
"name": "Cucumber scenario under cursor", | ||
"type": "Ruby", | ||
"request": "launch", | ||
"useBundler": true, | ||
"cwd": "${workspaceRoot}", | ||
"program": "${workspaceRoot}/bin/cucumber", | ||
"args": ["${file}:${lineNumber}"], | ||
"internalConsoleOptions": "openOnSessionStart" | ||
}, | ||
{ | ||
"name": "Rspec", | ||
"type": "Ruby", | ||
"request": "launch", | ||
"useBundler": true, | ||
"cwd": "${workspaceRoot}", | ||
"program": "${workspaceRoot}/bin/rspec", | ||
"internalConsoleOptions": "openOnSessionStart" | ||
}, | ||
{ | ||
"name": "Rspec current file", | ||
"type": "Ruby", | ||
"request": "launch", | ||
"useBundler": true, | ||
"cwd": "${workspaceRoot}", | ||
"program": "${workspaceRoot}/bin/rspec", | ||
"args": ["${file}"], | ||
"internalConsoleOptions": "openOnSessionStart" | ||
}, | ||
{ | ||
"name": "Rspec current line", | ||
"type": "Ruby", | ||
"request": "launch", | ||
"useBundler": true, | ||
"cwd": "${workspaceRoot}", | ||
"program": "${workspaceRoot}/bin/rspec", | ||
"args": ["${file}:${lineNumber}"], | ||
"internalConsoleOptions": "openOnSessionStart" | ||
} | ||
] | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters