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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c5f8ae35091446ca6e5c452da941b291c179d3e0
4
- data.tar.gz: a00bc64c21da58a412e7aa8ce763e1927d50356b
3
+ metadata.gz: 842bb27a00cbeab57f69808103045d43b603f5a7
4
+ data.tar.gz: 2ba0ef8f31bc53fd70a7f23565606f3d34f6d3ce
5
5
  SHA512:
6
- metadata.gz: d48ff397e9c71efa3ee736cddd44e8c972ceb7c10aab0c7146d1171b3f742d85778fcadabe02f434c0cc55c97a520f45d57e08eed248f9df1d8168f48db09e44
7
- data.tar.gz: b89cd1cf61dc4fe6e12a9e8e8f223d3c95640bfbf772cf7162d29afc3490a01be801e21dfb05ea8586eb805afb0031b53f962b9ad95a88912ab59d8bc4ff2d8d
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
@@ -1,3 +1,3 @@
1
1
  module Onkcop
2
- VERSION = "0.47.1.1"
2
+ VERSION = "0.47.1.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: onkcop
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.47.1.1
4
+ version: 0.47.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Takafumi ONAKA