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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3a55a97dcbd9779eadc93a6d31fa60f6b7ee33e28aac9e48f6abd583592c3f77
4
- data.tar.gz: 0ff66d0a54a6bb0ee74d19e4eb1d504dfeaaf0a0b7ea6ede60767f35db5a861b
3
+ metadata.gz: 7a8e1babdb8cbf41b982c175ef72c3c01d0446691a4954c2d16b7179f81fb822
4
+ data.tar.gz: 3f7a2f3b788b1820af922b8b1a19ba97b8193ab51c3c877104452daef5d9e411
5
5
  SHA512:
6
- metadata.gz: 320254eadfe5b89c390eae0237a73c0f0ca35f165fd428c38e1efc2b5fe1e593627faa224f517bd4c6d8353f9fedc8fab9f47e0ffd6835c4283bca9a62ba0dc5
7
- data.tar.gz: 3b983a048746e5675b0e4bc7d5789115428c3b410965943cf81faee1e4de55556ebdebf73da10579acf1f88e59b544ebba3cd2ba0b7bcc7c74fbfd4cba50e681
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: jetrockets-standard/rails.yml
31
+ jetrockets-standard: config/rails.yml
30
32
  ```
31
33
 
32
- ## Usage with RubyGems
33
-
34
- Put this into your Rubocop configration file
34
+ ### RubyGems
35
35
 
36
36
  ```yml
37
37
  inherit_gem:
38
- standard: jetrockets-standard/gems.yml
38
+ jetrockets-standard: config/gems.yml
39
39
  ```
40
40
 
41
+ ## Why?
42
+
43
+ ![Standards](./assets/standards.png?raw=true "Standards")
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
@@ -1,6 +1,6 @@
1
1
  inherit_from:
2
- - ./rspec.yml
3
- - ./standard.yml
2
+ - ./private/rspec.yml
3
+ - ./private/standard.yml
4
4
 
5
5
  inherit_mode:
6
6
  merge:
File without changes
@@ -13,4 +13,7 @@ StringLiterals:
13
13
  Style/FrozenStringLiteralComment:
14
14
  Enabled: true
15
15
 
16
+ Layout/EndAlignment:
17
+ EnforcedStyleAlignWith: keyword
18
+
16
19
  # Place your custom cops configration here
data/config/rails.yml CHANGED
@@ -2,8 +2,8 @@ require:
2
2
  - rubocop-rails
3
3
 
4
4
  inherit_from:
5
- - ./rspec.yml
6
- - ./standard.yml
5
+ - ./private/rspec.yml
6
+ - ./private/standard.yml
7
7
 
8
8
  inherit_mode:
9
9
  merge:
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Jetrockets
4
4
  module Standard
5
- VERSION = '1.0.1'
5
+ VERSION = '1.0.2'
6
6
  end
7
7
  end
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.1
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-18 00:00:00.000000000 Z
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