peppermint 0.1.15 → 0.1.16

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 94c84d4e2a0388ac8536fc3cfd8cc5c87f40c2f4d1e5d138b2f12e6597327470
4
- data.tar.gz: c0eaa95720187c97cb27ef96313409673ce3fcd6a2406916414eb1dc24eb28c9
3
+ metadata.gz: 5430f7e219a9f7a01d53eb0258802822c35a1b1fe7e4cb7957dfa569d4fefa2c
4
+ data.tar.gz: 9e3f91e22f3697f785ce9573bc7044b13e5b93235e32a7cca66bf897c93ffed5
5
5
  SHA512:
6
- metadata.gz: 524fbb1a1ed6212adc128c441256139f5ad9694d4af3e41738223ca6f809620babe08832b9c67c93d185d416d5a0ff6d1feda2aa112101701c264e5aa97015ef
7
- data.tar.gz: 69c811a5faac61aa463ebcc7bb11d82c2589f6683e5e1b7b972c0eeb90502c91b0d3188a3fe9424672b2831fc6844796f2ddb63b4a02ddbdc7ee7845bcf6444c
6
+ metadata.gz: befad51768276590786a1bbc4fcf39780fb18c5500836b666ef719d423585a8385b6a5c4ff33e34b7682971177493df004151cefddac81ba97d98706ab2b6b4c
7
+ data.tar.gz: d827fb868a6c914887267fb8dece6d5b8a5c2afd640c3ec9ca576f777e44de100f5dac7c998f77e19c242a3a3073b9fe080bfabdca703947bf0b6b85bb71bd28
data/.rubocop.yml CHANGED
@@ -1,4 +1,4 @@
1
- <%
1
+ <%
2
2
  require "open3"
3
3
  def gem_exists(gem)
4
4
  res = Open3.popen3("bundle", "info", "^#{gem}$") do |i, o, e, t|
@@ -22,9 +22,9 @@ require:
22
22
  <%= "- rubocop-rails" if gem_exists "rails" %>
23
23
  <%= "- rubocop-rspec_rails" if gem_exists "rails" %>
24
24
  <%= "- rubocop-capybara" if gem_exists "capybara" %>
25
-
25
+
26
26
  inherit_gem:
27
- standard: config/base.yml
27
+ standard: config/base.yml
28
28
  <%= "standard-rails: config/base.yml" if gem_exists "rails" %>
29
29
  standard-performance: config/base.yml
30
30
  standard-custom: config/base.yml
@@ -34,28 +34,30 @@ Layout/LineLength:
34
34
  Enabled: false
35
35
  Layout/EmptyLineBetweenDefs:
36
36
  AllowAdjacentOneLineDefs: true
37
+ Layout/ExtraSpacing:
38
+ Enabled: false
39
+ Layout/SpaceBeforeComma:
40
+ Enabled: false
41
+ Layout/SpaceInsideHashLiteralBraces:
42
+ Enabled: false
37
43
  Style/DisableCopsWithinSourceCodeDirective:
38
44
  Enabled: true
39
45
  Rake/Desc:
40
46
  Enabled: false
41
- <%
42
- <<RSPEC if gem_exists "rspec"
47
+ <% if gem_exists "rails" %>
48
+ Rails/ThreeStateBooleanColumn:
49
+ Enabled: false
50
+ <% end %>
51
+ <% if gem_exists "rspec" %>
43
52
  RSpec/MultipleExpectations:
44
53
  Enabled: false
45
54
  RSpec/ExampleLength:
46
55
  Enabled: false
47
- RSPEC
48
- %>
56
+ <% end %>
49
57
 
50
58
  #
51
59
  # Ignore differences from Rails autogeneration
52
60
  #
53
- Layout/SpaceInsideHashLiteralBraces:
54
- Exclude:
55
- - 'config/environments/*'
56
- Layout/ExtraSpacing:
57
- Exclude:
58
- - 'config/environments/*'
59
61
  Style/GlobalStdStream:
60
62
  Exclude:
61
63
  - 'config/environments/*'
@@ -134,3 +136,4 @@ AllCops:
134
136
  - 'vendor/**/*'
135
137
  - '.git/**/*'
136
138
  - 'db/migrate/*.active_storage.rb'
139
+ - 'db/migrate/*.acts_as_taggable_on_engine.rb'
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- peppermint (0.1.15)
4
+ peppermint (0.1.16)
5
5
  pry-byebug (~> 3.10)
6
6
  rake (~> 13.2)
7
7
  rdoc (~> 6.7)
@@ -147,4 +147,4 @@ DEPENDENCIES
147
147
  peppermint!
148
148
 
149
149
  BUNDLED WITH
150
- 2.4.19
150
+ 2.5.19
@@ -1,4 +1,4 @@
1
1
  module Peppermint
2
2
  GEM_NAME = File.basename(__dir__)
3
- VERSION = "0.1.15"
3
+ VERSION = "0.1.16"
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: peppermint
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.15
4
+ version: 0.1.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - "'j'"