reinteractive-style 0.2.4 → 0.2.5

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
- SHA1:
3
- metadata.gz: e9cba0c3bc6f63ef64bbdd76fb5f74e8860187f8
4
- data.tar.gz: cbcf2ec0c06724085cf052b189062abd72bcae9b
2
+ SHA256:
3
+ metadata.gz: 3684a960968b3d90cdc7dd3c15efdcbaa8c950c3c8bbd942b8cc83a50bf60460
4
+ data.tar.gz: 5483a16e60008f26f40d59ae962e3aed6de9892d638c9f3d68378114b29145e7
5
5
  SHA512:
6
- metadata.gz: de705cee39d9717dc1ad903612c7f5f900379f31235566dd908652c00cd1782d9182f12825021fb3e0c268e1990100b29d9f75e50f22402d50c35074979db0a4
7
- data.tar.gz: 7883ae3eb9b29fbb2c1fcbe17317cebaa2d4348fd931e12721bbaab9af6c7d6c0eac35758c3a75383c38ca2f89a57ed82dc8c34e66362413457dc5d13704e81a
6
+ metadata.gz: '079eea775db88d0a303a2b8d8b723ff2fb125dd6074f921042d5c8780992104600ec1d0a8382b3c9ac7bb9ea4375680d2d9e37247d3e3d9d47fb71661d5a4fd0'
7
+ data.tar.gz: 95d5fb4baa174e6f1478d7861b2be901377955b3387d8e5f54d0cd9b0962ecd6537eb8882adef9d803b6de316399a8848563b14508e786f42478902466d763fa
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2017 reinteractive
3
+ Copyright (c) 2018 reinteractive
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/default.yml CHANGED
@@ -609,7 +609,7 @@ Style/OneLineConditional:
609
609
  Description: Favor the ternary operator(?:) over if/then/else/end constructs.
610
610
  StyleGuide: https://github.com/bbatsov/ruby-style-guide#ternary-operator
611
611
  Enabled: false
612
- Naming/BinaryOperatorParameter:
612
+ Naming/BinaryOperatorParameterName:
613
613
  Description: When defining binary operators, name the argument other.
614
614
  StyleGuide: https://github.com/bbatsov/ruby-style-guide#other-arg
615
615
  Enabled: false
@@ -931,9 +931,15 @@ Layout/SpaceAroundOperators:
931
931
  Layout/SpaceAroundKeyword:
932
932
  Description: Put a space before the modifier keyword.
933
933
  Enabled: true
934
- Layout/SpaceInsideBrackets:
935
- Description: No spaces after [ or before ].
936
- StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-spaces-braces
934
+ Layout/SpaceInsideBlockBraces:
935
+ Description: >-
936
+ Checks that block braces have or don't have surrounding space.
937
+ For blocks taking parameters, checks that the left brace has
938
+ or doesn't have trailing space.
939
+ Enabled: true
940
+ Layout/SpaceInsideHashLiteralBraces:
941
+ Description: Use spaces inside hash literal braces - or don't.
942
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#spaces-operators
937
943
  Enabled: true
938
944
  Layout/SpaceInsideParens:
939
945
  Description: No spaces after ( or before ).
@@ -997,7 +1003,7 @@ Lint/HandleExceptions:
997
1003
  Description: Don't suppress exception.
998
1004
  StyleGuide: https://github.com/bbatsov/ruby-style-guide#dont-hide-exceptions
999
1005
  Enabled: false
1000
- Lint/LiteralInCondition:
1006
+ Lint/LiteralAsCondition:
1001
1007
  Description: Checks of literals used in conditions.
1002
1008
  Enabled: false
1003
1009
  Lint/LiteralInInterpolation:
@@ -1,5 +1,5 @@
1
1
  module Reinteractive
2
2
  module Style
3
- VERSION = "0.2.4".freeze
3
+ VERSION = "0.2.5".freeze
4
4
  end
5
5
  end
@@ -1,5 +1,3 @@
1
- # coding: utf-8
2
-
3
1
  lib = File.expand_path("../lib", __FILE__)
4
2
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
3
  require "reinteractive/style/version"
@@ -31,8 +29,8 @@ Gem::Specification.new do |spec|
31
29
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
32
30
  spec.require_paths = ["lib"]
33
31
 
34
- spec.add_dependency "rubocop", "~> 0.52.0"
35
- spec.add_dependency "rubocop-rspec", "~> 1.15"
32
+ spec.add_dependency "rubocop", "~> 0.52.1"
33
+ spec.add_dependency "rubocop-rspec", "~> 1.21.0"
36
34
 
37
35
  spec.add_development_dependency "bundler", "~> 1.15"
38
36
  spec.add_development_dependency "rake", "~> 10.0"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: reinteractive-style
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4
4
+ version: 0.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - reinteractive
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-12-13 00:00:00.000000000 Z
11
+ date: 2018-01-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -16,28 +16,28 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 0.52.0
19
+ version: 0.52.1
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 0.52.0
26
+ version: 0.52.1
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rubocop-rspec
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '1.15'
33
+ version: 1.21.0
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '1.15'
40
+ version: 1.21.0
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: bundler
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -105,7 +105,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
105
105
  version: '0'
106
106
  requirements: []
107
107
  rubyforge_project:
108
- rubygems_version: 2.6.13
108
+ rubygems_version: 2.7.3
109
109
  signing_key:
110
110
  specification_version: 4
111
111
  summary: reinteractive shared style configurations