jetrockets-standard 1.0.1 → 1.0.2
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/README.md +10 -5
- data/assets/standards.png +0 -0
- data/config/gems.yml +2 -2
- data/config/{rspec.yml → private/rspec.yml} +0 -0
- data/config/{standard.yml → private/standard.yml} +3 -0
- data/config/rails.yml +2 -2
- data/lib/jetrockets/standard/version.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7a8e1babdb8cbf41b982c175ef72c3c01d0446691a4954c2d16b7179f81fb822
|
|
4
|
+
data.tar.gz: 3f7a2f3b788b1820af922b8b1a19ba97b8193ab51c3c877104452daef5d9e411
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8719a930de95ba41bb4b08eb427c83b8c0c8d99ef6b0dd92cc518453468412638b39bea4f23753a7d1c833519441ec8435cc3ffed2cfd9f1ac2a942fb25aa780
|
|
7
|
+
data.tar.gz: 3fadfb2c918a4b53efd206df8f0e3e843a63f7588b5ed771a558bf6d8820e25d7fe826b3cef9259c2f8a6b4d85e0cf78ae7e7e8e37a0c606d4ecb63980c553a5
|
data/README.md
CHANGED
|
@@ -24,20 +24,25 @@ Or install it yourself as:
|
|
|
24
24
|
|
|
25
25
|
Put this into your Rubocop configration file
|
|
26
26
|
|
|
27
|
+
### Rails
|
|
28
|
+
|
|
27
29
|
```yml
|
|
28
30
|
inherit_gem:
|
|
29
|
-
standard:
|
|
31
|
+
jetrockets-standard: config/rails.yml
|
|
30
32
|
```
|
|
31
33
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
Put this into your Rubocop configration file
|
|
34
|
+
### RubyGems
|
|
35
35
|
|
|
36
36
|
```yml
|
|
37
37
|
inherit_gem:
|
|
38
|
-
standard:
|
|
38
|
+
jetrockets-standard: config/gems.yml
|
|
39
39
|
```
|
|
40
40
|
|
|
41
|
+
## Why?
|
|
42
|
+
|
|
43
|
+

|
|
44
|
+
|
|
45
|
+
|
|
41
46
|
## Contributing
|
|
42
47
|
|
|
43
48
|
Bug reports and pull requests are welcome on GitHub at https://github.com/jetrockets/jetrockets-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.
|
|
Binary file
|
data/config/gems.yml
CHANGED
|
File without changes
|
data/config/rails.yml
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jetrockets-standard
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Igor Alexandrov
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-09-
|
|
11
|
+
date: 2019-09-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop-rails
|
|
@@ -95,12 +95,13 @@ files:
|
|
|
95
95
|
- LICENSE.txt
|
|
96
96
|
- README.md
|
|
97
97
|
- Rakefile
|
|
98
|
+
- assets/standards.png
|
|
98
99
|
- bin/console
|
|
99
100
|
- bin/setup
|
|
100
101
|
- config/gems.yml
|
|
102
|
+
- config/private/rspec.yml
|
|
103
|
+
- config/private/standard.yml
|
|
101
104
|
- config/rails.yml
|
|
102
|
-
- config/rspec.yml
|
|
103
|
-
- config/standard.yml
|
|
104
105
|
- jetrockets-standard.gemspec
|
|
105
106
|
- lib/jetrockets/standard.rb
|
|
106
107
|
- lib/jetrockets/standard/version.rb
|