rubocop-select 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/.rubocop.yml +5 -6
- data/.tachikoma.yml +1 -0
- data/.travis.yml +1 -0
- data/README.md +2 -0
- data/bin/console +0 -0
- data/bin/setup +0 -0
- data/{bin → exe}/rubocop-select +1 -0
- data/lib/rubocop/select.rb +1 -1
- data/lib/rubocop/select/cli.rb +0 -2
- data/lib/rubocop/select/version.rb +1 -1
- data/rubocop-select.gemspec +2 -4
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 39ba3db0de1df76d6de761e4da366a0d31863ae5
|
4
|
+
data.tar.gz: 412b4e6d414ba9d67f746eee991751adfa260bf6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: afd0caad13983c120a31af8429166e1c9fc285d1594846b2c7f6fc54a2ba8292b2a6565d0b8095295b91a37c6258d8a79efd480eaa57b9c990f0fca57d2debe9
|
7
|
+
data.tar.gz: 5097b5a2ca47ac94d7c79cff4b5fd06f8fa17d5b9dc170d8241267cb92c796afa14ca02410df7bb80497322aa9d7299d6694964b7e154fd1cf8611209b9b0feb
|
data/.rubocop.yml
CHANGED
@@ -1,9 +1,7 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
# Note that changes in the inspected code, or installation of new
|
6
|
-
# versions of RuboCop, may require this file to be generated again.
|
1
|
+
AllCops:
|
2
|
+
Exclude:
|
3
|
+
- 'bundle_bin/*'
|
4
|
+
- 'vendor/bundle/**/*'
|
7
5
|
|
8
6
|
# Offense count: 3
|
9
7
|
# Configuration parameters: AllowURI, URISchemes.
|
@@ -22,3 +20,4 @@ Style/FileName:
|
|
22
20
|
Exclude:
|
23
21
|
- bin/*
|
24
22
|
- bundle_bin/*
|
23
|
+
- exe/*
|
data/.tachikoma.yml
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
strategy: 'none'
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
data/bin/console
CHANGED
File without changes
|
data/bin/setup
CHANGED
File without changes
|
data/{bin → exe}/rubocop-select
RENAMED
data/lib/rubocop/select.rb
CHANGED
data/lib/rubocop/select/cli.rb
CHANGED
data/rubocop-select.gemspec
CHANGED
@@ -17,10 +17,8 @@ Gem::Specification.new do |spec|
|
|
17
17
|
spec.files = `git ls-files -z`
|
18
18
|
.split("\x0")
|
19
19
|
.reject { |f| f.match(%r{^(test|spec|features)/}) }
|
20
|
-
spec.
|
21
|
-
|
22
|
-
.reject { |f| f.match(%r{^bin/(console|setup)}) }
|
23
|
-
.grep(%r{^(exe|bin)/}) { |f| File.basename(f) }
|
20
|
+
spec.bindir = 'exe'
|
21
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
24
22
|
spec.require_paths = ['lib']
|
25
23
|
|
26
24
|
spec.add_runtime_dependency 'rubocop'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubocop-select
|
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
|
- sanemat
|
8
8
|
autorequire:
|
9
|
-
bindir:
|
9
|
+
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-02-
|
11
|
+
date: 2015-02-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|
@@ -83,6 +83,7 @@ files:
|
|
83
83
|
- ".gitignore"
|
84
84
|
- ".rspec"
|
85
85
|
- ".rubocop.yml"
|
86
|
+
- ".tachikoma.yml"
|
86
87
|
- ".travis.yml"
|
87
88
|
- CODE_OF_CONDUCT.md
|
88
89
|
- Gemfile
|
@@ -90,9 +91,9 @@ files:
|
|
90
91
|
- README.md
|
91
92
|
- Rakefile
|
92
93
|
- bin/console
|
93
|
-
- bin/rubocop-select
|
94
94
|
- bin/setup
|
95
95
|
- example/simple.rb
|
96
|
+
- exe/rubocop-select
|
96
97
|
- lib/rubocop/select.rb
|
97
98
|
- lib/rubocop/select/cli.rb
|
98
99
|
- lib/rubocop/select/file.rb
|