rubocop-changes 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/rubocop/changes/version.rb +1 -1
- data/rubocop-changes.gemspec +8 -3
- metadata +7 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f54bf51edaf07c90f304d6004e8d933778543bd4295f214e85e17768fbe9bb86
|
4
|
+
data.tar.gz: 81abcff6122aaf37231498d5f8281327065b622c4a9c0900e158db14e61083c2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bc0e059f48efaab6c7304ea36910ff17b559e234115d5af72d5d43d443be4f0bc9c1122102d8f49df87babd3cb43ff9181648419d0f7bc0d36488f549c61fe0c
|
7
|
+
data.tar.gz: b51a7d09c8bd5dca134a9bb13178b3f04549f9ef9e19a458db7ae81bb8969e7e891515795c9f8f49ddd09271a7a2a54147645f33851b433f1983a44a2563bcb9
|
data/rubocop-changes.gemspec
CHANGED
@@ -10,13 +10,18 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.authors = ["Ferran Basora"]
|
11
11
|
spec.email = ["fcsonline@gmail.com"]
|
12
12
|
|
13
|
-
spec.summary = "Rubocop on changed lines"
|
14
|
-
spec.description =
|
13
|
+
spec.summary = "Rubocop on changed lines from forked point"
|
14
|
+
spec.description = <<-DESCRIPTION
|
15
|
+
rubocop-changes will run rubocop on changed lines from forked point in your main branch.
|
16
|
+
It will not complain about existing offenses in master branch.
|
17
|
+
This gem is perfect as a Continuous Integration tool
|
18
|
+
DESCRIPTION
|
19
|
+
|
15
20
|
spec.homepage = 'https://rubygems.org/gems/rubocop-changes'
|
16
21
|
spec.license = "MIT"
|
17
22
|
|
18
23
|
spec.metadata = {
|
19
|
-
'source_code_uri' =>
|
24
|
+
'source_code_uri' => 'https://github.com/fcsonline/rubocop-changes',
|
20
25
|
'bug_tracker_uri' => 'https://github.com/fcsonline/rubocop-changes/issues'
|
21
26
|
}
|
22
27
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubocop-changes
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ferran Basora
|
@@ -108,7 +108,10 @@ dependencies:
|
|
108
108
|
- - "~>"
|
109
109
|
- !ruby/object:Gem::Version
|
110
110
|
version: '3.0'
|
111
|
-
description:
|
111
|
+
description: |2
|
112
|
+
rubocop-changes will run rubocop on changed lines from forked point in your main branch.
|
113
|
+
It will not complain about existing offenses in master branch.
|
114
|
+
This gem is perfect as a Continuous Integration tool
|
112
115
|
email:
|
113
116
|
- fcsonline@gmail.com
|
114
117
|
executables:
|
@@ -141,7 +144,7 @@ homepage: https://rubygems.org/gems/rubocop-changes
|
|
141
144
|
licenses:
|
142
145
|
- MIT
|
143
146
|
metadata:
|
144
|
-
source_code_uri: https://
|
147
|
+
source_code_uri: https://github.com/fcsonline/rubocop-changes
|
145
148
|
bug_tracker_uri: https://github.com/fcsonline/rubocop-changes/issues
|
146
149
|
post_install_message:
|
147
150
|
rdoc_options: []
|
@@ -161,5 +164,5 @@ requirements: []
|
|
161
164
|
rubygems_version: 3.0.1
|
162
165
|
signing_key:
|
163
166
|
specification_version: 4
|
164
|
-
summary: Rubocop on changed lines
|
167
|
+
summary: Rubocop on changed lines from forked point
|
165
168
|
test_files: []
|