barcoop 0.2.5 → 0.2.6
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/conf/rubocop.yml +11 -0
- data/lib/barcoop/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d8c94eb1e29eacc126ee716f1612597ecfc71727
|
|
4
|
+
data.tar.gz: b8186ad81d171b2c24de13ec85432472e5f39345
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b166e18ea74187d999422a4f96db584a970b69bd294e3bb9ed0d54390481cde2e200ce0fbebec32983228e754b4aa6654a792cbf71a57e05bda164a5b462be25
|
|
7
|
+
data.tar.gz: 391d8c08d96074a68159f33962730a93e494cb896d1e2b0cfb4bb3a08745adbb88614de02da46fa399949684090c07ac5bca8d44d7f59599ec261970a6895354
|
data/conf/rubocop.yml
CHANGED
|
@@ -91,3 +91,14 @@ CaseIndentation:
|
|
|
91
91
|
|
|
92
92
|
Style/FrozenStringLiteralComment:
|
|
93
93
|
Enabled: false
|
|
94
|
+
|
|
95
|
+
# Creating an array for just two comparisions is just too much of an
|
|
96
|
+
# overhead and also not very readable. Unfortunately there's no setting
|
|
97
|
+
# for how many repetitions are allowed
|
|
98
|
+
Style/MultipleComparison:
|
|
99
|
+
Enabled: false
|
|
100
|
+
|
|
101
|
+
# -> do / end just looks silly and lambda do / end is too verbose or
|
|
102
|
+
# looks inconsistent with single line lambdas close by
|
|
103
|
+
Style/Lambda:
|
|
104
|
+
Enabled: false
|
data/lib/barcoop/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: barcoop
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sergio Medina
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-10-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop
|
|
@@ -91,7 +91,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
91
91
|
version: '0'
|
|
92
92
|
requirements: []
|
|
93
93
|
rubyforge_project:
|
|
94
|
-
rubygems_version: 2.6.
|
|
94
|
+
rubygems_version: 2.6.13
|
|
95
95
|
signing_key:
|
|
96
96
|
specification_version: 4
|
|
97
97
|
summary: barcoo's rubocop config and cops
|