forked from hardeep/ops
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
106 additions
and
74 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,4 @@ | ||
*.swo | ||
*.swp | ||
*.gem | ||
.ruby-version |
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,36 +1,45 @@ | ||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
aws-sdk (1.8.3) | ||
json (~> 1.4) | ||
nokogiri (>= 1.4.4) | ||
uuidtools (~> 2.1) | ||
diff-lcs (1.1.3) | ||
aws-sdk (2.4.2) | ||
aws-sdk-resources (= 2.4.2) | ||
aws-sdk-core (2.4.2) | ||
jmespath (~> 1.0) | ||
aws-sdk-resources (2.4.2) | ||
aws-sdk-core (= 2.4.2) | ||
diff-lcs (1.2.5) | ||
i18n (0.7.0) | ||
json (1.7.7) | ||
net-ssh (2.6.5) | ||
nokogiri (1.5.6) | ||
rake (10.0.3) | ||
rspec (2.11.0) | ||
rspec-core (~> 2.11.0) | ||
rspec-expectations (~> 2.11.0) | ||
rspec-mocks (~> 2.11.0) | ||
rspec-core (2.11.1) | ||
rspec-expectations (2.11.2) | ||
diff-lcs (~> 1.1.3) | ||
rspec-mocks (2.11.2) | ||
uuidtools (2.1.3) | ||
jmespath (1.3.1) | ||
json (2.0.1) | ||
net-ssh (2.9.4) | ||
rake (11.2.2) | ||
rspec (3.5.0) | ||
rspec-core (~> 3.5.0) | ||
rspec-expectations (~> 3.5.0) | ||
rspec-mocks (~> 3.5.0) | ||
rspec-core (3.5.1) | ||
rspec-support (~> 3.5.0) | ||
rspec-expectations (3.5.0) | ||
diff-lcs (>= 1.2.0, < 2.0) | ||
rspec-support (~> 3.5.0) | ||
rspec-mocks (3.5.0) | ||
diff-lcs (>= 1.2.0, < 2.0) | ||
rspec-support (~> 3.5.0) | ||
rspec-support (3.5.0) | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
aws-sdk (< 2.0) | ||
aws-sdk | ||
i18n | ||
json | ||
net-ssh | ||
net-ssh (< 3) | ||
rake | ||
rspec | ||
|
||
RUBY VERSION | ||
ruby 2.3.1p112 | ||
|
||
BUNDLED WITH | ||
1.11.2 | ||
1.12.5 |
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 |
---|---|---|
|
@@ -4,28 +4,23 @@ files = `git ls-files`.split("\n") | |
|
||
Gem::Specification.new do |s| | ||
s.name = 'devops' | ||
|
||
s.version = Ops::version | ||
|
||
s.date = Time.new | ||
|
||
s.summary = "Ops tool for remote servers" | ||
s.description = "Ops tool for remote servers" | ||
|
||
s.authors = [ "Hardeep Shoker", "Ryan Willoughby" ] | ||
s.description = "Ops tool for remote servers (EC2 etc.)" | ||
s.authors = [ "Hardeep Shoker", "Ryan Willoughby", "Brett Rudd" ] | ||
s.email = '[email protected]' | ||
s.homepage = 'https://github.com/hardeep/ops' | ||
|
||
s.files = files | ||
|
||
s.licenses = "MIT" | ||
s.required_ruby_version = '~> 2.3' | ||
s.bindir = 'bin' | ||
s.require_paths = ["lib"] | ||
s.executables = [ 'ops' ] | ||
|
||
s.add_dependency('bundler') | ||
s.add_dependency('i18n') | ||
s.add_dependency('aws-sdk', '< 2.0') | ||
s.add_dependency('net-ssh', '< 3.0') | ||
s.add_dependency('json') | ||
s.add_dependency('rake') | ||
s.add_dependency('bundler', '~>1.12') | ||
s.add_dependency('i18n', '~>0.7') | ||
s.add_dependency('aws-sdk', '~>2.4') | ||
s.add_dependency('net-ssh', '<3') | ||
s.add_dependency('json', '~>2.0') | ||
s.add_dependency('rake', '~>11.2') | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
module Ops | ||
|
||
def self.version | ||
"0.2.0" | ||
"0.3.0" | ||
end | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
{ | ||
"IdentityLocations" : [ "~/.ssh" ], | ||
"IdentityLocations" : [ "~/.ssh" ], | ||
"AWS" : { | ||
"AccessKeyId" : "", | ||
"SecretAccessKey" : "" | ||
} | ||
"SecretAccessKey" : "", | ||
"Region" : "", | ||
"InstanceOpts": { | ||
"filters": [{ "name": "tag:TagName", "values": ["TagValue"] }] | ||
} | ||
}, | ||
"SSH" : { "verbose" : 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
require 'ops.rb' | ||
require 'devops.rb' |