glossgenius_style 0.1.9 → 0.1.10

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
  SHA256:
3
- metadata.gz: 32fc8717166c206fa212aec00df3fb2b35b648770d542b01cc2829ac1242d77d
4
- data.tar.gz: abf3d786da4c2f269d5666964baa6cb7fb5fc9e726178ed1602813752b11ee27
3
+ metadata.gz: 99adc2db0c43dbe58fdf5ddfb36bb4e2d75fb79504dec73f35f1cc75d36e6b3f
4
+ data.tar.gz: 92e895b3a98c4b25bc5b5e85bf20cc9487c2afa9b598571bfe577515d9d36c5c
5
5
  SHA512:
6
- metadata.gz: c34fce212c7e7e9d6d4919456fb1c93ccd8ec02fa0894b88f72d40e7345e09299278b83dd74884670d05d49b0fa7e9103617681ed3ef9164b3f36fdec0da980c
7
- data.tar.gz: eec8a4282a03289585039499590d39930201b38d8c8d5dbcf99b9baeaff5028ec70b29e393c4fd4e1904d8f6121da51601e0c9c30285907b01ed1f3e389046f7
6
+ metadata.gz: 7ce27ab34bbfcaf35282204d66695012baac3b5c87e317c0ddbae500a4be8079f1c7d481fd09d3fdd10b45b6f0ba4cf72408e3fbe86a7e61dbe680d2aa868e7e
7
+ data.tar.gz: 23ce02468f388966a7573f190d096ecac9da0f44d65631e5570b48b9fc647ae4077d3ba5e58e1d0e65818fff7a49efea1f14fa7d07166c9c64ef1542af4666f6
@@ -20,7 +20,7 @@ jobs:
20
20
  - name: set up ruby
21
21
  uses: actions/setup-ruby@v1
22
22
  with:
23
- version: 2.6.x
23
+ ruby-version: 2.6.x
24
24
 
25
25
  - name: manage token(s) for package registry(s)
26
26
  run: |
data/Gemfile.lock CHANGED
@@ -1,9 +1,9 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- glossgenius_style (0.1.9)
5
- rubocop (~> 0.76.0)
6
- rubocop-rspec (~> 1.36.0)
4
+ glossgenius_style (0.1.10)
5
+ rubocop (~> 0.81.0)
6
+ rubocop-rspec (~> 1.38.1)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
@@ -12,10 +12,11 @@ GEM
12
12
  diff-lcs (1.3)
13
13
  jaro_winkler (1.5.4)
14
14
  parallel (1.19.1)
15
- parser (2.6.5.0)
15
+ parser (2.7.1.0)
16
16
  ast (~> 2.4.0)
17
17
  rainbow (3.0.0)
18
18
  rake (13.0.1)
19
+ rexml (3.2.4)
19
20
  rspec (3.9.0)
20
21
  rspec-core (~> 3.9.0)
21
22
  rspec-expectations (~> 3.9.0)
@@ -29,17 +30,18 @@ GEM
29
30
  diff-lcs (>= 1.2.0, < 2.0)
30
31
  rspec-support (~> 3.9.0)
31
32
  rspec-support (3.9.0)
32
- rubocop (0.76.0)
33
+ rubocop (0.81.0)
33
34
  jaro_winkler (~> 1.5.1)
34
35
  parallel (~> 1.10)
35
- parser (>= 2.6)
36
+ parser (>= 2.7.0.1)
36
37
  rainbow (>= 2.2.2, < 4.0)
38
+ rexml
37
39
  ruby-progressbar (~> 1.7)
38
- unicode-display_width (>= 1.4.0, < 1.7)
39
- rubocop-rspec (1.36.0)
40
+ unicode-display_width (>= 1.4.0, < 2.0)
41
+ rubocop-rspec (1.38.1)
40
42
  rubocop (>= 0.68.1)
41
43
  ruby-progressbar (1.10.1)
42
- unicode-display_width (1.6.0)
44
+ unicode-display_width (1.7.0)
43
45
 
44
46
  PLATFORMS
45
47
  ruby
data/default.yml CHANGED
@@ -26,6 +26,9 @@ Style/ClassAndModuleChildren:
26
26
  Style/Documentation:
27
27
  Enabled: false
28
28
 
29
+ Style/FrozenStringLiteralComment:
30
+ EnforcedStyle: always
31
+
29
32
  Style/MixinUsage:
30
33
  Exclude:
31
34
  - 'bin/*'
@@ -7,8 +7,8 @@ require 'glossgenius_style/version'
7
7
  Gem::Specification.new do |spec|
8
8
  spec.name = 'glossgenius_style'
9
9
  spec.version = GlossgeniusStyle::VERSION
10
- spec.authors = ['Alexey Cherkashin']
11
- spec.email = ['goodniceweb@gmail.com']
10
+ spec.author = 'GlossGenius'
11
+ spec.email = 'support@glossgenius.com'
12
12
 
13
13
  spec.summary = 'Ruby Style Guide for GlossGenius engineering team'
14
14
  spec.homepage = 'https://github.com/GlossGenius/ruby-style-guide'
@@ -21,8 +21,8 @@ Gem::Specification.new do |spec|
21
21
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
22
22
  spec.require_paths = ['lib']
23
23
 
24
- spec.add_dependency 'rubocop', '~> 0.76.0'
25
- spec.add_dependency 'rubocop-rspec', '~> 1.36.0'
24
+ spec.add_runtime_dependency 'rubocop', '~> 0.81.0'
25
+ spec.add_runtime_dependency 'rubocop-rspec', '~> 1.38.1'
26
26
  spec.add_development_dependency 'bundler', '~> 2.0'
27
27
  spec.add_development_dependency 'rake', '~> 13.0.0'
28
28
  spec.add_development_dependency 'rspec', '~> 3.9.0'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GlossgeniusStyle
4
- VERSION = '0.1.9'
4
+ VERSION = '0.1.10'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: glossgenius_style
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9
4
+ version: 0.1.10
5
5
  platform: ruby
6
6
  authors:
7
- - Alexey Cherkashin
7
+ - GlossGenius
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-11-29 00:00:00.000000000 Z
11
+ date: 2020-04-13 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.76.0
19
+ version: 0.81.0
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.76.0
26
+ version: 0.81.0
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.36.0
33
+ version: 1.38.1
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.36.0
40
+ version: 1.38.1
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: bundler
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -81,8 +81,7 @@ dependencies:
81
81
  - !ruby/object:Gem::Version
82
82
  version: 3.9.0
83
83
  description:
84
- email:
85
- - goodniceweb@gmail.com
84
+ email: support@glossgenius.com
86
85
  executables: []
87
86
  extensions: []
88
87
  extra_rdoc_files: []