README.md in rubocop-rspec-1.3.0 vs README.md in rubocop-rspec-1.3.1
- old
+ new
@@ -57,11 +57,11 @@
## The Cops
All cops are located under
-[`lib/rubocop/cop/spec`](lib/rubocop/cop/rspec), and contain
+[`lib/rubocop/cop/rspec`](lib/rubocop/cop/rspec), and contain
examples/documentation.
In your `.rubocop.yml`, you may treat the RSpec cops just like any other
cop. For example:
@@ -69,9 +69,25 @@
RSpec/FilePath:
Exclude:
- spec/my_poorly_named_spec_file.rb
```
+
+## Contributing
+
+1. Fork it
+2. Create your feature branch (`git checkout -b my-new-feature`)
+3. Commit your changes (`git commit -am 'Add some feature'`)
+4. Push to the branch (`git push origin my-new-feature`)
+5. Create new Pull Request
+
+For running the spec files, this project depends on RuboCop's spec helpers.
+This means that in order to run the specs locally, you need a (shallow) clone
+of the RuboCop repository:
+
+```bash
+git clone --depth 1 git://github.com/bbatsov/rubocop.git vendor/rubocop
+```
## License
`rubocop-rspec` is MIT licensed. [See the accompanying file](MIT-LICENSE.md) for
the full text.