Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #88

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 13 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@ Add ability to run RSpec and see the output without leaving Atom.

HotKeys:

- __Ctrl+Alt+T__ - executes all specs the current file
- __Ctrl+Alt+X__ - executes only the spec on the line the cursor's at
- __Ctrl+Alt+E__ - re-executes the last executed spec
- <kbd>ctrl</kbd> + <kbd>alt</kbd> + <kbd>T</kbd> - executes all specs the current file
- <kbd>ctrl</kbd> + <kbd>alt</kbd> + <kbd>X</kbd> - executes only the spec on the line the cursor's at
- <kbd>ctrl</kbd> + <kbd>alt</kbd> + <kbd>E</kbd> - re-executes the last executed spec
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The <kbd> tags are more visually appealing, and also improve reading accessibility for users with visual disabilities


> macOS users can use <kbd>option</kbd> instead of <kbd>alt</kbd>.
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Some people might be confused about this (not all Mac keyboards say "alt")


![Screenshot](http://cl.ly/image/2G2B3M2g3l3k/stats_collector_spec.rb%20-%20-Users-fcoury-Projects-crm_bliss.png)

Expand All @@ -21,8 +23,14 @@ and changing the command option like below:

![Configuration Screenshot](http://f.cl.ly/items/2k1C0E0e1l2Z3m1l3e1R/Settings%20-%20-Users-fcoury-Projects-crm_bliss.jpg)

Or by opening your configuration file (clicking __Atom__ > __Open Your Config__)
Or by opening your configuration file (clicking __Atom__ > __Config…__)
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Atom just says "Config…" now

and adding or changing the following snippet:

'rspec':
'command': 'bundle exec rspec'
command: 'bundle exec rspec'

> You may need to make a change like this if you see an error like:
>
> ```bash
> bash: line 1: undefined: command not found
> ```
Copy link
Author

@getaaron getaaron Jun 25, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#82 gets a decent amount of attention; thought it would be nice to include a fix in the README