chefstyle 0.14.1 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,4 @@
1
1
  module Chefstyle
2
- VERSION = "0.14.1".freeze
3
- RUBOCOP_VERSION = "0.75.1".freeze
2
+ VERSION = "1.1.0".freeze
3
+ RUBOCOP_VERSION = "0.85.0".freeze
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chefstyle
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.1
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chef Software, Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-02-12 00:00:00.000000000 Z
11
+ date: 2020-06-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -58,14 +58,14 @@ dependencies:
58
58
  requirements:
59
59
  - - '='
60
60
  - !ruby/object:Gem::Version
61
- version: 0.75.1
61
+ version: 0.85.0
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - '='
67
67
  - !ruby/object:Gem::Version
68
- version: 0.75.1
68
+ version: 0.85.0
69
69
  description:
70
70
  email:
71
71
  - oss@chef.io
@@ -74,7 +74,6 @@ executables:
74
74
  extensions: []
75
75
  extra_rdoc_files: []
76
76
  files:
77
- - Gemfile
78
77
  - LICENSE
79
78
  - bin/chefstyle
80
79
  - chefstyle.gemspec
@@ -96,7 +95,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
96
95
  requirements:
97
96
  - - ">="
98
97
  - !ruby/object:Gem::Version
99
- version: '2.3'
98
+ version: '2.4'
100
99
  required_rubygems_version: !ruby/object:Gem::Requirement
101
100
  requirements:
102
101
  - - ">="
@@ -106,5 +105,5 @@ requirements: []
106
105
  rubygems_version: 3.0.3
107
106
  signing_key:
108
107
  specification_version: 4
109
- summary: Rubocop configuration for Chef's ruby projects
108
+ summary: RuboCop configuration for Chef's ruby projects
110
109
  test_files: []
data/Gemfile DELETED
@@ -1,22 +0,0 @@
1
- source "https://rubygems.org"
2
-
3
- # Specify your gem's dependencies in chefstyle.gemspec
4
- gemspec
5
-
6
- group :debug do
7
- gem "pry"
8
- gem "pry-byebug"
9
- gem "pry-stack_explorer"
10
- end
11
-
12
- group :docs do
13
- gem "github-markup"
14
- gem "redcarpet"
15
- gem "yard"
16
- end
17
-
18
- instance_eval(ENV["GEMFILE_MOD"]) if ENV["GEMFILE_MOD"]
19
-
20
- # If you want to load debugging tools into the bundle exec sandbox,
21
- # add these additional dependencies into Gemfile.local
22
- eval_gemfile(__FILE__ + ".local") if File.exist?(__FILE__ + ".local")