-
Notifications
You must be signed in to change notification settings - Fork 232
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run chefstlye over the codebase (#408)
- Run chefstyle - Move development dependencies into the Gemfile - Remove tailor and cane which are no longer maintained Signed-off-by: Dan Webb <dan.webb@damacus.io>
- Loading branch information
Showing
23 changed files
with
297 additions
and
323 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,22 @@ | ||
source 'https://rubygems.org' | ||
|
||
gemspec | ||
|
||
group :development do | ||
gem 'bundler' | ||
gem 'rake' | ||
# Style checker gems. | ||
gem 'countloc' | ||
|
||
# Unit testing gems. | ||
gem 'rspec', '~> 3.2' | ||
gem 'rspec-its', '~> 1.2' | ||
gem 'fuubar', '~> 2.0' | ||
# gem 'simplecov', '~> 0.9' | ||
gem 'codecov', '~> 0.0', '>= 0.0.2' | ||
gem 'chefstyle', '~> 2.2', '>= 2.2.3' | ||
|
||
# Integration testing gems. | ||
gem 'kitchen-inspec', '~> 2.0' | ||
gem 'train', '>= 2.1', '< 4.0' # validate 4.x when it's released | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,20 @@ | ||
lib = File.expand_path('../lib', __FILE__) | ||
lib = File.expand_path("../lib", __FILE__) | ||
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | ||
require 'kitchen/docker/docker_version' | ||
require "kitchen/docker/docker_version" | ||
|
||
Gem::Specification.new do |spec| | ||
spec.name = 'kitchen-docker' | ||
spec.name = "kitchen-docker" | ||
spec.version = Kitchen::Docker::DOCKER_VERSION | ||
spec.authors = ['Sean Porter'] | ||
spec.email = ['portertech@gmail.com'] | ||
spec.authors = ["Sean Porter"] | ||
spec.email = ["portertech@gmail.com"] | ||
spec.description = %q{A Docker Driver for Test Kitchen} | ||
spec.summary = spec.description | ||
spec.homepage = 'https://github.com/test-kitchen/kitchen-docker' | ||
spec.license = 'Apache 2.0' | ||
spec.homepage = "https://github.com/test-kitchen/kitchen-docker" | ||
spec.license = "Apache 2.0" | ||
|
||
spec.files = `git ls-files`.split($/) | ||
spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) | ||
spec.require_paths = ['lib'] | ||
spec.require_paths = ["lib"] | ||
|
||
spec.add_dependency 'test-kitchen', '>= 1.0.0' | ||
|
||
spec.add_development_dependency 'bundler' | ||
spec.add_development_dependency 'rake' | ||
|
||
# Style checker gems. | ||
spec.add_development_dependency 'cane' | ||
spec.add_development_dependency 'tailor' | ||
spec.add_development_dependency 'countloc' | ||
|
||
# Unit testing gems. | ||
spec.add_development_dependency 'rspec', '~> 3.2' | ||
spec.add_development_dependency 'rspec-its', '~> 1.2' | ||
spec.add_development_dependency 'fuubar', '~> 2.0' | ||
spec.add_development_dependency 'simplecov', '~> 0.9' | ||
spec.add_development_dependency 'codecov', '~> 0.0', '>= 0.0.2' | ||
spec.add_development_dependency 'chefstyle' | ||
|
||
# Integration testing gems. | ||
spec.add_development_dependency 'kitchen-inspec', '~> 2.0' | ||
spec.add_development_dependency 'train', '>= 2.1', '< 4.0' # validate 4.x when it's released | ||
spec.add_dependency "test-kitchen", ">= 1.0.0", "< 4.0" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.