rubocop-codetakt 0.2.2 → 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +27 -0
  3. data/README.md +1 -0
  4. data/config/rails4.yml +6 -0
  5. metadata +2 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5de2e922d1bf362282a4de2c20a1f5732dfdd0d2
4
- data.tar.gz: 378fdef36961412dcdd3a2712235aff2d4f50a49
3
+ metadata.gz: 25eea8df877cff791994f9ddff81dca63699b1d8
4
+ data.tar.gz: 87ac172bf011c75f35e2d672b9a7f10c1339b69d
5
5
  SHA512:
6
- metadata.gz: fb63740eeec4a11be7e1b9a7412071d519e70798023bfa2931dcb3f3b33f3ae8874977234a27a998e7ca1d509d19cd4e1e58f26a7b58c162afab92106dfde211
7
- data.tar.gz: 1b71dd9ad2807131c5f28e288de6c60623dab8139d7bd4850cbc95c1191fd1aef494be17adb72acc95e5efc77854448121442b2b64b5cd0e434e29c79fb8a2ee
6
+ metadata.gz: 8ab74e50923889eb28bd67da63c586e9d8693db8cae85927a5edb8bdded8fd4e09e663c301796775f9eb3a44b09da98e249fa256c3a2e4dfcfe8e6d4275e2ac7
7
+ data.tar.gz: db0a1335f95d573470ee44e38f692710b212d6b01c8224f8cfbe0562d105f0636a4fa5bf9d1069815654aa1fddd4b17e2967aaa7cbb6e8a67862f7eb33014b52
data/CHANGELOG.md CHANGED
@@ -1,5 +1,32 @@
1
1
  # rubocop-codetakt
2
2
 
3
+ ## Unreleased
4
+
5
+ [full changelog](https://github.com/codetakt/rubocop-codetakt/compare/v0.2.3...HEAD)
6
+
7
+ * Update the Changelog.
8
+
9
+ ## v0.2.3 (2017-03-27)
10
+
11
+ [full changelog](https://github.com/codetakt/rubocop-codetakt/compare/v0.2.2...v0.2.3)
12
+
13
+ * Add the new config "config/rails4.yml".
14
+ For prevent the False positives in Rails 4.2.
15
+
16
+ ## v0.2.2 (2017-03-27)
17
+
18
+ [full changelog](https://github.com/codetakt/rubocop-codetakt/compare/v0.2.1...v0.2.2)
19
+
20
+ * Follow the RuboCop updates to the version 0.48.
21
+
22
+ See the upstream's release note: <https://github.com/bbatsov/rubocop/releases/tag/v0.48.0>
23
+
24
+ ## v0.2.1 (2017-03-22)
25
+
26
+ [full changelog](https://github.com/codetakt/rubocop-codetakt/compare/v0.2.0...v0.2.1)
27
+
28
+ * Fix README's typo.
29
+
3
30
  ## v0.2.0 (2017-03-21)
4
31
 
5
32
  [full changelog](https://github.com/codetakt/rubocop-codetakt/compare/v0.1.0...v0.2.0)
data/README.md CHANGED
@@ -27,6 +27,7 @@ inherit_gem:
27
27
  rubocop-codetakt:
28
28
  - config/default.yml
29
29
  - config/rails.yml # optional.
30
+ - config/rails4.yml # optional.
30
31
  ```
31
32
 
32
33
  ## License
data/config/rails4.yml ADDED
@@ -0,0 +1,6 @@
1
+ # Prevent the False positives in Rails 4.2.
2
+ #
3
+ # See: http://tech.sideci.com/entry/2016/10/20/110000 and
4
+ # https://github.com/bbatsov/rubocop/issues/3629#issuecomment-254059840
5
+ Rails/HttpPositionalArguments:
6
+ Enabled: false
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-codetakt
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - codeTakt
@@ -63,6 +63,7 @@ files:
63
63
  - README.md
64
64
  - config/default.yml
65
65
  - config/rails.yml
66
+ - config/rails4.yml
66
67
  homepage: https://github.com/codetakt/rubocop-codetakt/
67
68
  licenses:
68
69
  - MIT