chefstyle 1.0.1 → 1.0.2
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 +4 -4
- data/lib/chefstyle/version.rb +1 -1
- metadata +3 -5
- data/Gemfile +0 -16
- data/chefstyle.gemspec +0 -25
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 17b8642aa055242c18ed2ba3fd4a33a762d248baf2ae05487fec0810fba102eb
|
|
4
|
+
data.tar.gz: f6da9fc7c9882d1cc5346bc35ca4d30387bd086d3f4fc30d8bee38c5c468d654
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fc01ef1125f843898ada9e3a3aef2bf38fb5075c6082525f3bae4f64bfb8b30bf6fd74749e7fddddf576309f91a384b5963bc40fc96520441e5bec175489feee
|
|
7
|
+
data.tar.gz: 4f4cfb55b00c294961c0b9285e95884af05ed6f6953e45625888af802cd76125b6db4876489b17636321f51a66b3ed812ab823ce1f3a4074c8faef649a6b35f5
|
data/lib/chefstyle/version.rb
CHANGED
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: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
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-04-
|
|
11
|
+
date: 2020-04-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -74,10 +74,8 @@ executables:
|
|
|
74
74
|
extensions: []
|
|
75
75
|
extra_rdoc_files: []
|
|
76
76
|
files:
|
|
77
|
-
- Gemfile
|
|
78
77
|
- LICENSE
|
|
79
78
|
- bin/chefstyle
|
|
80
|
-
- chefstyle.gemspec
|
|
81
79
|
- config/chefstyle.yml
|
|
82
80
|
- config/default.yml
|
|
83
81
|
- config/disable_all.yml
|
|
@@ -106,5 +104,5 @@ requirements: []
|
|
|
106
104
|
rubygems_version: 3.0.3
|
|
107
105
|
signing_key:
|
|
108
106
|
specification_version: 4
|
|
109
|
-
summary:
|
|
107
|
+
summary: RuboCop configuration for Chef's ruby projects
|
|
110
108
|
test_files: []
|
data/Gemfile
DELETED
|
@@ -1,16 +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
|
data/chefstyle.gemspec
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
# coding: utf-8
|
|
2
|
-
lib = File.expand_path("../lib", __FILE__)
|
|
3
|
-
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
-
require "chefstyle/version"
|
|
5
|
-
|
|
6
|
-
Gem::Specification.new do |spec|
|
|
7
|
-
spec.name = "chefstyle"
|
|
8
|
-
spec.version = Chefstyle::VERSION
|
|
9
|
-
spec.authors = ["Chef Software, Inc."]
|
|
10
|
-
spec.email = ["oss@chef.io"]
|
|
11
|
-
|
|
12
|
-
spec.summary = %q{Rubocop configuration for Chef's ruby projects}
|
|
13
|
-
spec.homepage = "https://github.com/chef/chefstyle"
|
|
14
|
-
spec.license = "Apache-2.0"
|
|
15
|
-
spec.required_ruby_version = ">= 2.4"
|
|
16
|
-
|
|
17
|
-
spec.files = %w{LICENSE chefstyle.gemspec Gemfile} + Dir.glob("{bin,config,lib}/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) }
|
|
18
|
-
spec.executables = %w{chefstyle}
|
|
19
|
-
spec.require_paths = ["lib"]
|
|
20
|
-
|
|
21
|
-
spec.add_development_dependency "bundler"
|
|
22
|
-
spec.add_development_dependency "rake", ">= 12.0"
|
|
23
|
-
spec.add_development_dependency "rspec"
|
|
24
|
-
spec.add_dependency("rubocop", Chefstyle::RUBOCOP_VERSION)
|
|
25
|
-
end
|