cookstyle 3.0.1 → 3.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/Gemfile +4 -0
- data/cookstyle.gemspec +26 -0
- data/lib/cookstyle/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c62fc4bd1636fca2fb4d4b6c50bf9674e17585c42e746833b9516109baa4eabd
|
|
4
|
+
data.tar.gz: 9992507f6f7899f01caf214ce6e8b2bf6a7b05ba9a91a24ccbabb72268951275
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4a9d8b8c033ce5367a818041da194bc7ba2e6dccd402243ca4e86260812ba2c2752313498568277ba3d6f2991c34dba9e5d2337c2f17dbe33965d457c0c90c7d
|
|
7
|
+
data.tar.gz: 2ce3d2e58f08e0e00ac546b70e4d21126ce3691ffc4e8551b2751b800171f9671e2493696985cfd27e38df8f40e4195e3ccea52265ddadb6874f0fa7ec67f06c
|
data/Gemfile
ADDED
data/cookstyle.gemspec
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
+
require 'cookstyle/version'
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |spec|
|
|
7
|
+
spec.name = 'cookstyle'
|
|
8
|
+
spec.version = Cookstyle::VERSION
|
|
9
|
+
spec.authors = ['Thom May', 'Tim Smith']
|
|
10
|
+
spec.email = ['thom@chef.io', 'tsmith@chef.io']
|
|
11
|
+
|
|
12
|
+
spec.summary = 'RuboCop configuration for Chef cookbooks'
|
|
13
|
+
spec.homepage = 'https://github.com/chef/cookstyle'
|
|
14
|
+
spec.license = 'Apache-2.0'
|
|
15
|
+
spec.required_ruby_version = '>= 2.1'
|
|
16
|
+
|
|
17
|
+
# the gemspec and Gemfile are necessary for appbundling of the gem
|
|
18
|
+
spec.files = %w{LICENSE cookstyle.gemspec Gemfile} + Dir.glob("{lib,bin,config}/**/*")
|
|
19
|
+
spec.executables = %w(cookstyle)
|
|
20
|
+
spec.require_paths = ['lib']
|
|
21
|
+
|
|
22
|
+
spec.add_development_dependency 'bundler', '~> 1.10'
|
|
23
|
+
spec.add_development_dependency 'rake'
|
|
24
|
+
spec.add_development_dependency 'rspec'
|
|
25
|
+
spec.add_dependency('rubocop', Cookstyle::RUBOCOP_VERSION)
|
|
26
|
+
end
|
data/lib/cookstyle/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cookstyle
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Thom May
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2018-12-
|
|
12
|
+
date: 2018-12-14 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|
|
@@ -76,6 +76,7 @@ executables:
|
|
|
76
76
|
extensions: []
|
|
77
77
|
extra_rdoc_files: []
|
|
78
78
|
files:
|
|
79
|
+
- Gemfile
|
|
79
80
|
- LICENSE
|
|
80
81
|
- bin/cookstyle
|
|
81
82
|
- config/cookstyle.yml
|
|
@@ -85,6 +86,7 @@ files:
|
|
|
85
86
|
- config/disabled.yml
|
|
86
87
|
- config/enabled.yml
|
|
87
88
|
- config/upstream.yml
|
|
89
|
+
- cookstyle.gemspec
|
|
88
90
|
- lib/cookstyle.rb
|
|
89
91
|
- lib/cookstyle/version.rb
|
|
90
92
|
homepage: https://github.com/chef/cookstyle
|