rubochief 0.0.0 → 0.0.1
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/.gitignore +3 -0
- data/.rubocop.yml +15 -0
- data/rubochief.gemspec +19 -0
- metadata +5 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e4a8bb88e12ede186ca6a463389fe2d0a9292a5f
|
4
|
+
data.tar.gz: 2675135301eab08df9bb857072b71e2d6bdf8e90
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 02b2a3a9be063e6fc3d388c1cb8e52c07ae547a4b0efe9f09f7da722ce90278fb104b6a202b42e4d9f191fbd613b86150ec209c81371ab37758c69494229c1a7
|
7
|
+
data.tar.gz: 4c8f368ec5be3031e6688b0bd977f484991a18e1c465631ae116ea69544b96986085ee316e59a1fd6dd5397bc627a41a9e43654c6f1e01ef917844f8499d0e13
|
data/.gitignore
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
AllCops:
|
2
|
+
DisplayCopNames: true
|
3
|
+
DisplayStyleGuide: true
|
4
|
+
ExtraDetails: true
|
5
|
+
UseCache: true
|
6
|
+
|
7
|
+
Metrics/LineLength:
|
8
|
+
Max: 120
|
9
|
+
Metrics/MethodLength:
|
10
|
+
Max: 10
|
11
|
+
|
12
|
+
# No space makes the method definition shorter and differentiates
|
13
|
+
# from a regular assignment.
|
14
|
+
Style/SpaceAroundEqualsInParameterDefault:
|
15
|
+
EnforcedStyle: no_space
|
data/rubochief.gemspec
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
Gem::Specification.new do |s|
|
2
|
+
s.name = 'rubochief'
|
3
|
+
s.version = '0.0.1'
|
4
|
+
s.date = '2017-05-18'
|
5
|
+
s.summary = 'A centralized rubocop config'
|
6
|
+
s.description = 'Configuration files for rubocop to keep styles consistent' \
|
7
|
+
'across multiple ruby projects'
|
8
|
+
s.authors = ['Pete Cass']
|
9
|
+
s.email = 'pete.h.cass@gmail.com'
|
10
|
+
s.homepage = 'https://github.com/Petecass/rubochief'
|
11
|
+
s.license = 'MIT'
|
12
|
+
|
13
|
+
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
14
|
+
|
15
|
+
s.add_dependency 'rubocop', '~> 0.46'
|
16
|
+
|
17
|
+
s.add_development_dependency 'bundler', '~> 1.10'
|
18
|
+
s.add_development_dependency 'rake', '~> 11.0'
|
19
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubochief
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pete Cass
|
@@ -58,7 +58,10 @@ email: pete.h.cass@gmail.com
|
|
58
58
|
executables: []
|
59
59
|
extensions: []
|
60
60
|
extra_rdoc_files: []
|
61
|
-
files:
|
61
|
+
files:
|
62
|
+
- ".gitignore"
|
63
|
+
- ".rubocop.yml"
|
64
|
+
- rubochief.gemspec
|
62
65
|
homepage: https://github.com/Petecass/rubochief
|
63
66
|
licenses:
|
64
67
|
- MIT
|