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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +3 -0
  3. data/.rubocop.yml +15 -0
  4. data/rubochief.gemspec +19 -0
  5. metadata +5 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5f1441ae6c34e86e9ed2ffe284f2f66cf23bd898
4
- data.tar.gz: d83ff5315b1a2d36773fc05f91fe1fcbd9d2607d
3
+ metadata.gz: e4a8bb88e12ede186ca6a463389fe2d0a9292a5f
4
+ data.tar.gz: 2675135301eab08df9bb857072b71e2d6bdf8e90
5
5
  SHA512:
6
- metadata.gz: f7f5e2560abd21f6e5aa4a587f62ab60d7cf1e888ab522ebd92d8f4f9bfeda90be00215f0531a1e6f7a828083a21fad97d0dbbb7d508cea6ba151b4cff9009c7
7
- data.tar.gz: 1c49fd150e83eb81a79550e49661a7ac1db62ce58bf6cf0aefd9d0d6f63166efd29cc746f848e3d364b2280c836fcaa5c02893b99d7565a4592bf51618cc5224
6
+ metadata.gz: 02b2a3a9be063e6fc3d388c1cb8e52c07ae547a4b0efe9f09f7da722ce90278fb104b6a202b42e4d9f191fbd613b86150ec209c81371ab37758c69494229c1a7
7
+ data.tar.gz: 4c8f368ec5be3031e6688b0bd977f484991a18e1c465631ae116ea69544b96986085ee316e59a1fd6dd5397bc627a41a9e43654c6f1e01ef917844f8499d0e13
data/.gitignore ADDED
@@ -0,0 +1,3 @@
1
+ .DS_Store
2
+ /Gemfile.lock
3
+ /.bundle/
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.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