easy_style 0.1.6 → 0.2.0

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: 3fb074e8ca2e5068465a2ed979350c63374635bca0b4f1778afc8edadd1f9db0
4
- data.tar.gz: 7328f658a3dbed304388778d87b36fe0028808d380f7a7fbad0ced889fecb89c
3
+ metadata.gz: e96c679079c639200829ecde194677a8ad4e31861149c829ee634d728bfe19cf
4
+ data.tar.gz: 13dc1a307c583e319b9fe1364dcd0c65400c4b65288b46f8946ce6549549b842
5
5
  SHA512:
6
- metadata.gz: 9952396805a9d77d1a08765e92ffb081495bf8a7ecb899ac49a6eb70d13e500640394ff7ed1d77d8fab5ab4caa5db3ab3896a7f0cc601e126ca0394f79c1853a
7
- data.tar.gz: 5e13acfcac5dff745f9269909941a6db63156c5d80320fe07347f3ef6cae687fd86fd5a15a3d8234f37e1942cde2e5370311041576f92fac8a23f21073010a2a
6
+ metadata.gz: 8935700150dc3cd2d28650da992e96a16b42256d48efe6735d6fecb5a2286880abc40d70ca286621253e46147aed0276ab514de6e542ac6504cceefab9a6ed11
7
+ data.tar.gz: e4afcc5a342bfbda25aa3e0ee6cbb6cf9d1a6ca68924b068a495e3c8616254511c5cf52660169c96978bda0f80c390f2301545d08d431a6a58d38412eae06c59
data/README.md CHANGED
@@ -1,8 +1,10 @@
1
1
  # EasyStyle
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/easy_style`. To experiment with that code, run `bin/console` for an interactive prompt.
3
+ Default RuboCop configuration for Easy.
4
4
 
5
- TODO: Delete this and the text above, and describe your gem
5
+ https://docs.rubocop.org/rubocop/
6
+
7
+ https://www.easysoftware.com
6
8
 
7
9
  ## Installation
8
10
 
@@ -41,7 +43,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
41
43
 
42
44
  ## Contributing
43
45
 
44
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/easy_style.
46
+ Bug reports and pull requests are welcome on GitHub at https://github.com/easysoftware/easy_style.
45
47
 
46
48
 
47
49
  ## License
data/default.yml CHANGED
@@ -4,9 +4,14 @@ require:
4
4
  Rails:
5
5
  Enabled: true
6
6
  AllCops:
7
- TargetRubyVersion: 2.5
7
+ TargetRubyVersion: 2.6
8
8
  NewCops: enable
9
9
 
10
+ Gemspec/RequireMFA:
11
+ Enabled: false
12
+ Gemspec/DeprecatedAttributeAssignment:
13
+ Enabled: false
14
+
10
15
  Layout/EmptyLinesAroundClassBody:
11
16
  EnforcedStyle: empty_lines_special
12
17
  Layout/EmptyLinesAroundModuleBody:
@@ -56,6 +61,9 @@ Style/StringLiterals:
56
61
  Style/TrailingCommaInHashLiteral:
57
62
  Enabled: false
58
63
  EnforcedStyleForMultiline: consistent_comma
64
+ Style/TrailingCommaInArrayLiteral:
65
+ Enabled: true
66
+ EnforcedStyleForMultiline: consistent_comma
59
67
  Style/SymbolArray:
60
68
  Enabled: false
61
69
  Style/EmptyMethod:
data/easy_style.gemspec CHANGED
@@ -27,6 +27,6 @@ Gem::Specification.new do |spec|
27
27
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
28
28
  spec.require_paths = ['lib']
29
29
 
30
- spec.add_dependency 'rubocop', '~> 1.17.0'
31
- spec.add_dependency 'rubocop-rails', '~> 2.9.1'
30
+ spec.add_dependency 'rubocop', '~> 1.38.0'
31
+ spec.add_dependency 'rubocop-rails', '~> 2.17.2'
32
32
  end
@@ -1,5 +1,5 @@
1
1
  module EasyStyle
2
2
 
3
- VERSION = '0.1.6'
3
+ VERSION = '0.2.0'
4
4
 
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: easy_style
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Easy Software Ltd
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-06-29 00:00:00.000000000 Z
11
+ date: 2022-11-07 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: 1.17.0
19
+ version: 1.38.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: 1.17.0
26
+ version: 1.38.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rubocop-rails
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 2.9.1
33
+ version: 2.17.2
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: 2.9.1
40
+ version: 2.17.2
41
41
  description: Rubocop configs
42
42
  email:
43
43
  - info@easyredmine.com
@@ -63,7 +63,7 @@ metadata:
63
63
  homepage_uri: https://github.com/easysoftware/easy_style
64
64
  source_code_uri: https://github.com/easysoftware/easy_style
65
65
  changelog_uri: https://github.com/easysoftware/easy_style
66
- post_install_message:
66
+ post_install_message:
67
67
  rdoc_options: []
68
68
  require_paths:
69
69
  - lib
@@ -78,8 +78,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
78
78
  - !ruby/object:Gem::Version
79
79
  version: '0'
80
80
  requirements: []
81
- rubygems_version: 3.1.6
82
- signing_key:
81
+ rubygems_version: 3.3.22
82
+ signing_key:
83
83
  specification_version: 4
84
84
  summary: Rubocop configs
85
85
  test_files: []