matkoniecz-ruby-style 1.2 → 1.3
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 +1 -8
- data/matkoniecz-ruby-style.gemspec +2 -2
- data/reinstall_and_push_new_version.sh +4 -0
- data/standard_rubocop_config.yml +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: 1c6d0e29bea69f100fa76c827b041d9f3527e2198258d66764f92239a3a297a3
|
4
|
+
data.tar.gz: 7c41b0736159b973cedf3f66c42acfb663fff5c1a72adcf617cf71f0d963be72
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9db1ddc95cea373e5fdef0479bbe533ba81c1ad7441e77645331df36e4fc51f0282a3dc0f99ddb3cece8b8cb0835023cb8d71d457bcec6073de71a661ffe0eb7
|
7
|
+
data.tar.gz: 4a9606de83a9909a4c3fa98102f80bae525a6fdcc5c31a0f3021b228b78eb5f2522aa9259b69a9ccc8600e667a04260b13c709130e06d5512476056f51be4397
|
data/README.md
CHANGED
@@ -34,14 +34,7 @@ You do not need to include rubocop directly in your application's dependencies.
|
|
34
34
|
|
35
35
|
## How to release new gem version
|
36
36
|
|
37
|
-
|
38
|
-
rm ./*.gem
|
39
|
-
gem build ./*.gemspec
|
40
|
-
gem install --user-install ./*.gem
|
41
|
-
gem push *.gem
|
42
|
-
```
|
43
|
-
|
44
|
-
Code to install new version locally is also in `reinstall.sh` file.
|
37
|
+
See `reinstall.sh` and `reinstall_and_push_new_version.sh` files.
|
45
38
|
|
46
39
|
## Contributing
|
47
40
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |spec|
|
2
2
|
spec.name = "matkoniecz-ruby-style"
|
3
|
-
spec.version = 1.
|
3
|
+
spec.version = 1.3
|
4
4
|
spec.authors = ["Mateusz Konieczny"]
|
5
5
|
spec.email = ["matkoniecz@gmail.com"]
|
6
6
|
|
@@ -16,6 +16,6 @@ Gem::Specification.new do |spec|
|
|
16
16
|
spec.bindir = "exe"
|
17
17
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
18
18
|
spec.require_paths = ["lib"]
|
19
|
-
spec.add_dependency "rubocop", "~> 0.
|
19
|
+
spec.add_dependency "rubocop", "~> 0.76"
|
20
20
|
spec.add_dependency "rubocop-rspec", "~> 1.29.1"
|
21
21
|
end
|
data/standard_rubocop_config.yml
CHANGED
@@ -70,7 +70,7 @@ Style/SymbolArray:
|
|
70
70
|
# group = ["#{fish[0]}", "#{fish[0]} filet", "filet z #{fish[1]}"]
|
71
71
|
# vs
|
72
72
|
# group = [(fish[0]).to_s, "#{fish[0]} filet", "filet z #{fish[1]}"]
|
73
|
-
Style/
|
73
|
+
Style/RedundantInterpolation:
|
74
74
|
Enabled: false
|
75
75
|
|
76
76
|
# local style optimization is better than global consistency
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: matkoniecz-ruby-style
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '1.
|
4
|
+
version: '1.3'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mateusz Konieczny
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-12-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.76'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '0.
|
26
|
+
version: '0.76'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rubocop-rspec
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -53,6 +53,7 @@ files:
|
|
53
53
|
- Rakefile
|
54
54
|
- matkoniecz-ruby-style.gemspec
|
55
55
|
- reinstall.sh
|
56
|
+
- reinstall_and_push_new_version.sh
|
56
57
|
- standard_rubocop_config.yml
|
57
58
|
homepage: https://github.com/matkoniecz/matkoniecz-ruby-style
|
58
59
|
licenses:
|