onkcop 0.47.1.1 → 0.47.1.2
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/CHANGELOG.md +7 -0
- data/config/rubocop.yml +5 -0
- data/lib/onkcop/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 842bb27a00cbeab57f69808103045d43b603f5a7
|
|
4
|
+
data.tar.gz: 2ba0ef8f31bc53fd70a7f23565606f3d34f6d3ce
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bdb0eb4be5b8754c8412a4f9e17e62465d2b84750295b7e976362f1b44b18e380adfaef09f993a639cf6b0d015c9380d10fd4c7d3cc0371352e07f8d9d1b3c4f
|
|
7
|
+
data.tar.gz: 6f29e9370610ee8ca5609951b5408032ab3172ecc5f9ff5b509ec5b2c24173ed5ee36dfe68ad3f097f0f1209f7de32d353b32d2e4bd42530358428b453b8dd11
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# onkcop
|
|
2
2
|
|
|
3
|
+
## v0.47.1.2 (2017-03-01)
|
|
4
|
+
|
|
5
|
+
[full changelog](https://github.com/onk/onkcop/compare/v0.47.1.1...v0.47.1.2)
|
|
6
|
+
|
|
7
|
+
* Change `Style/StringLiteralsInInterpolation` to `double_quotes` style.
|
|
8
|
+
|
|
9
|
+
|
|
3
10
|
## v0.47.1.1 (2017-03-01)
|
|
4
11
|
|
|
5
12
|
[full changelog](https://github.com/onk/onkcop/compare/v0.47.1.0...v0.47.1.1)
|
data/config/rubocop.yml
CHANGED
|
@@ -197,6 +197,11 @@ Style/Semicolon:
|
|
|
197
197
|
Style/StringLiterals:
|
|
198
198
|
EnforcedStyle: double_quotes
|
|
199
199
|
|
|
200
|
+
# 式展開中でもダブルクォートを使う
|
|
201
|
+
# 普段の文字列リテラルがダブルクォートなので使い分けるのが面倒
|
|
202
|
+
Style/StringLiteralsInInterpolation:
|
|
203
|
+
EnforcedStyle: double_quotes
|
|
204
|
+
|
|
200
205
|
# String#intern は ruby の内部表現すぎるので String#to_sym を使う
|
|
201
206
|
Style/StringMethods:
|
|
202
207
|
Enabled: true
|
data/lib/onkcop/version.rb
CHANGED