-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
first pass at refactor logic into lib
added .rubocop.yml updated rest-client removed unsafe eval
- Loading branch information
1 parent
0d441bc
commit 0e73979
Showing
6 changed files
with
329 additions
and
186 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
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,6 +1,7 @@ | ||
# Changelog | ||
|
||
### Unreleased | ||
- refactor logic into a library | ||
|
||
### 2.0.1 | ||
- actually add `slack-poster` dependency | ||
|
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 |
---|---|---|
|
@@ -6,14 +6,16 @@ Gem::Specification.new do |s| | |
s.authors = ['Eric Heydrick'] | ||
s.email = '[email protected]' | ||
s.executables = ['aws_cleaner.rb'] | ||
s.files = ['bin/aws_cleaner.rb'] | ||
s.files = Dir.glob("{bin,lib}/**/*.rb") | ||
s.homepage = 'https://github.com/eheydrick/aws-cleaner' | ||
s.license = 'MIT' | ||
|
||
s.add_development_dependency 'rubocop', '~> 0.43.0' | ||
|
||
s.add_runtime_dependency 'aws-sdk-core', '~> 2.0' | ||
s.add_runtime_dependency 'chef-api', '~> 0.5' | ||
s.add_runtime_dependency 'hipchat', '~> 1.5' | ||
s.add_runtime_dependency 'rest-client', '~> 1.8' | ||
s.add_runtime_dependency 'rest-client', '~> 2 ' | ||
s.add_runtime_dependency 'slack-poster', '~> 2.2' | ||
s.add_runtime_dependency 'trollop', '~> 2.1' | ||
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
Oops, something went wrong.