forked from sous-chefs/elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
closes sous-chefs#751 Provide additional package_name parameter for i…
…nstall
- Loading branch information
Showing
6 changed files
with
150 additions
and
147 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 +1 @@ | ||
~FC057 | ||
~FC057 |
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,48 +1,48 @@ | ||
*.rbc | ||
.config | ||
coverage | ||
InstalledFiles | ||
lib/bundler/man | ||
pkg | ||
rdoc | ||
spec/reports | ||
test/tmp | ||
test/version_tmp | ||
tmp | ||
_Store | ||
*~ | ||
*# | ||
.#* | ||
\#*# | ||
.*.sw[a-z] | ||
*.un~ | ||
*.tmp | ||
*.bk | ||
*.bkup | ||
|
||
# ruby/bundler files | ||
.ruby-version | ||
.ruby-gemset | ||
.rvmrc | ||
Gemfile.lock | ||
.bundle | ||
*.gem | ||
|
||
# YARD artifacts | ||
.yardoc | ||
_yardoc | ||
doc/ | ||
.idea | ||
|
||
#chef stuff | ||
Berksfile.lock | ||
.kitchen | ||
.kitchen.local.yml | ||
vendor/ | ||
.coverage/ | ||
.zero-knife.rb | ||
|
||
#vagrant stuff | ||
.vagrant/ | ||
.vagrant.d/ | ||
.kitchen/ | ||
*.rbc | ||
.config | ||
coverage | ||
InstalledFiles | ||
lib/bundler/man | ||
pkg | ||
rdoc | ||
spec/reports | ||
test/tmp | ||
test/version_tmp | ||
tmp | ||
_Store | ||
*~ | ||
*# | ||
.#* | ||
\#*# | ||
.*.sw[a-z] | ||
*.un~ | ||
*.tmp | ||
*.bk | ||
*.bkup | ||
|
||
# ruby/bundler files | ||
.ruby-version | ||
.ruby-gemset | ||
.rvmrc | ||
Gemfile.lock | ||
.bundle | ||
*.gem | ||
|
||
# YARD artifacts | ||
.yardoc | ||
_yardoc | ||
doc/ | ||
.idea | ||
|
||
#chef stuff | ||
Berksfile.lock | ||
.kitchen | ||
.kitchen.local.yml | ||
vendor/ | ||
.coverage/ | ||
.zero-knife.rb | ||
|
||
#vagrant stuff | ||
.vagrant/ | ||
.vagrant.d/ | ||
.kitchen/ |
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,74 +1,74 @@ | ||
Lint/RescueException: | ||
Exclude: | ||
- 'Rakefile' | ||
- 'libraries/helpers.rb' | ||
|
||
Naming/AccessorMethodName: | ||
Exclude: | ||
- 'Rakefile' | ||
- 'libraries/helpers.rb' | ||
|
||
Style/RescueModifier: | ||
Exclude: | ||
- 'Rakefile' | ||
- 'libraries/helpers.rb' | ||
|
||
Style/GuardClause: | ||
Enabled: false | ||
Exclude: | ||
- 'Rakefile' | ||
- 'libraries/helpers.rb' | ||
|
||
Style/IfUnlessModifier: | ||
Enabled: false | ||
|
||
Style/PercentLiteralDelimiters: | ||
Enabled: false | ||
|
||
# Longer classes are okay. | ||
Metrics/ClassLength: | ||
Max: 200 | ||
Metrics/MethodLength: | ||
Max: 30 | ||
Metrics/ModuleLength: | ||
Max: 150 | ||
Metrics/BlockLength: | ||
Max: 150 | ||
|
||
# Not on VT100s anymore. | ||
Metrics/LineLength: | ||
Max: 180 | ||
|
||
# We're not against complexity. | ||
Metrics/AbcSize: | ||
Max: 55 | ||
Metrics/CyclomaticComplexity: | ||
Max: 20 | ||
Metrics/PerceivedComplexity: | ||
Max: 20 | ||
|
||
# Mixlib::ShellOut is nice to have as an older hash syntax | ||
Style/HashSyntax: | ||
Enabled: false | ||
|
||
Style/ClassAndModuleChildren: | ||
Enabled: false | ||
|
||
Style/FrozenStringLiteralComment: | ||
Enabled: false | ||
|
||
Style/WordArray: | ||
Enabled: False | ||
|
||
# Cookstyle specific things | ||
ChefStyle/CommentFormat: | ||
Enabled: False # we are not Chef | ||
|
||
ChefModernize/WhyRunSupportedTrue: | ||
Enabled: False # we are still supporting v12 | ||
|
||
ChefModernize/RespondToInMetadata: | ||
Enabled: False # we're supporting 12.5 still | ||
|
||
ChefModernize/DefinesChefSpecMatchers: | ||
Enabled: False # we haven't moved to newer ChefSpec yet | ||
Lint/RescueException: | ||
Exclude: | ||
- 'Rakefile' | ||
- 'libraries/helpers.rb' | ||
|
||
Naming/AccessorMethodName: | ||
Exclude: | ||
- 'Rakefile' | ||
- 'libraries/helpers.rb' | ||
|
||
Style/RescueModifier: | ||
Exclude: | ||
- 'Rakefile' | ||
- 'libraries/helpers.rb' | ||
|
||
Style/GuardClause: | ||
Enabled: false | ||
Exclude: | ||
- 'Rakefile' | ||
- 'libraries/helpers.rb' | ||
|
||
Style/IfUnlessModifier: | ||
Enabled: false | ||
|
||
Style/PercentLiteralDelimiters: | ||
Enabled: false | ||
|
||
# Longer classes are okay. | ||
Metrics/ClassLength: | ||
Max: 200 | ||
Metrics/MethodLength: | ||
Max: 30 | ||
Metrics/ModuleLength: | ||
Max: 150 | ||
Metrics/BlockLength: | ||
Max: 150 | ||
|
||
# Not on VT100s anymore. | ||
Metrics/LineLength: | ||
Max: 180 | ||
|
||
# We're not against complexity. | ||
Metrics/AbcSize: | ||
Max: 55 | ||
Metrics/CyclomaticComplexity: | ||
Max: 20 | ||
Metrics/PerceivedComplexity: | ||
Max: 20 | ||
|
||
# Mixlib::ShellOut is nice to have as an older hash syntax | ||
Style/HashSyntax: | ||
Enabled: false | ||
|
||
Style/ClassAndModuleChildren: | ||
Enabled: false | ||
|
||
Style/FrozenStringLiteralComment: | ||
Enabled: false | ||
|
||
Style/WordArray: | ||
Enabled: False | ||
|
||
# Cookstyle specific things | ||
ChefStyle/CommentFormat: | ||
Enabled: False # we are not Chef | ||
|
||
ChefModernize/WhyRunSupportedTrue: | ||
Enabled: False # we are still supporting v12 | ||
|
||
ChefModernize/RespondToInMetadata: | ||
Enabled: False # we're supporting 12.5 still | ||
|
||
ChefModernize/DefinesChefSpecMatchers: | ||
Enabled: False # we haven't moved to newer ChefSpec yet |
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,22 +1,22 @@ | ||
language: ruby | ||
|
||
branches: | ||
only: | ||
- master | ||
|
||
sudo: false | ||
|
||
rvm: | ||
- 2.5.7 | ||
|
||
install: bundle install --jobs=3 --retry=3 --without kitchen_vagrant kitchen_rackspace kitchen_ec2 development | ||
cache: | ||
directories: | ||
- vendor/bundle | ||
|
||
script: | ||
- bundle exec rake style | ||
- bundle exec rake spec | ||
|
||
notifications: | ||
disable: true | ||
language: ruby | ||
|
||
branches: | ||
only: | ||
- master | ||
|
||
sudo: false | ||
|
||
rvm: | ||
- 2.5.7 | ||
|
||
install: bundle install --jobs=3 --retry=3 --without kitchen_vagrant kitchen_rackspace kitchen_ec2 development | ||
cache: | ||
directories: | ||
- vendor/bundle | ||
|
||
script: | ||
- bundle exec rake style | ||
- bundle exec rake spec | ||
|
||
notifications: | ||
disable: true |
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