ruby_coding_standard 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.lint.yml +0 -3
- data/README.md +5 -14
- data/lib/ruby_coding_standard/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3356678f5b769b8829bc6340990cea734cf7be6ad895a66b2f17dba3f35f6cb8
|
|
4
|
+
data.tar.gz: 362dd35a1fb3e1e87eb817f4d376e2fcca08db7949ad4773dcc80da4d2050456
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '09f24243a568ba9e22bc81174d40f0055f9bd5c6beb7edf168b0c074f33d0aec97c90a5740ac8ee1b4f459d595e5dc75f7249144d6f1eabe0a544f1afa6096b4'
|
|
7
|
+
data.tar.gz: d22321f816f5b297ded9a50238a7b4e06186c3f5717e4081b0d2069138e8464269e1f675495e24bceec4b9fcaa8ff5020570f33c9a13c50b8c65d079a473279a
|
data/.lint.yml
CHANGED
data/README.md
CHANGED
|
@@ -20,18 +20,9 @@ Or install it yourself as:
|
|
|
20
20
|
|
|
21
21
|
## Usage
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
Add to your `.rubocop.yml` file
|
|
24
24
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
|
30
|
-
|
|
31
|
-
## Contributing
|
|
32
|
-
|
|
33
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/ruby_coding_standard. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
|
34
|
-
|
|
35
|
-
## Code of Conduct
|
|
36
|
-
|
|
37
|
-
Everyone interacting in the RubyCodingStandard project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/ruby_coding_standard/blob/master/CODE_OF_CONDUCT.md).
|
|
25
|
+
```yml
|
|
26
|
+
inherit_gem:
|
|
27
|
+
ruby_coding_standard: .rubocop.yml
|
|
28
|
+
```
|