devops_toolkit 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.travis.yml +5 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +21 -0
- data/README.md +60 -0
- data/Rakefile +50 -0
- data/VERSION +1 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/devops_toolkit.gemspec +29 -0
- data/exe/devops-toolkit +6 -0
- data/exe/ikopico +6 -0
- data/lib/devops_toolkit/runner.rb +23 -0
- data/lib/devops_toolkit/tasks/cidr.rb +23 -0
- data/lib/devops_toolkit/tasks/ssh.rb +30 -0
- data/lib/devops_toolkit/version.rb +3 -0
- data/lib/devops_toolkit.rb +5 -0
- metadata +134 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 817dd6dbb5cdf0f798618b95f35b0b6ed8cf4aaa
|
4
|
+
data.tar.gz: 0f75e78c97085c9be147a7e5b6bc16e7e0385753
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 5e25663c5de4204858964a526e5bde051bb77ad0d97a8c42dbfb8ce042d0cfb382f8adff4b1be1a43aa2754f9dadcf167b5f8799c0748a75fca1f60f4e6d564e
|
7
|
+
data.tar.gz: 6f68a9ccaa779265186a0e0e296ade37b6e37d2b6c1809aa6c3c31b13f8bfdb1dfc5d54b0785838f4e17590b5474e54724963345cbbdd93f4fa081098750a2ca
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at amit.goldberg@gmail.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2017 Amit Goldberg
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,60 @@
|
|
1
|
+
# DevopsToolkit
|
2
|
+
|
3
|
+
## Installation
|
4
|
+
|
5
|
+
```
|
6
|
+
$ gem install devops_toolkit
|
7
|
+
```
|
8
|
+
|
9
|
+
## Usage
|
10
|
+
|
11
|
+
Please consult the `--help` flag for listing available commands and subcommands.
|
12
|
+
For example;
|
13
|
+
|
14
|
+
```
|
15
|
+
$ devops-toolkit --help
|
16
|
+
Commands:
|
17
|
+
devops-toolkit cidr # CIDR related tasks
|
18
|
+
devops-toolkit help [COMMAND] # Describe available commands or one specific command
|
19
|
+
devops-toolkit ssh # SSH and SSH configuration tasks
|
20
|
+
```
|
21
|
+
|
22
|
+
```
|
23
|
+
$ devops-toolkit cidr --help
|
24
|
+
Commands:
|
25
|
+
devops-toolkit cidr help [COMMAND] # Describe subcommands or one specific subcommand
|
26
|
+
devops-toolkit cidr size # get the address size of a given cidr block
|
27
|
+
```
|
28
|
+
|
29
|
+
```
|
30
|
+
$ devops-toolkit cidr size --help
|
31
|
+
Usage:
|
32
|
+
devops-toolkit cidr size [cidr]
|
33
|
+
|
34
|
+
Options:
|
35
|
+
[--ipv6], [--no-ipv6] # Use IPV6
|
36
|
+
[--ipv4], [--no-ipv4] # Use IPV4 (default)
|
37
|
+
# Default: true
|
38
|
+
|
39
|
+
get the address size of a given cidr block
|
40
|
+
```
|
41
|
+
|
42
|
+
## Development
|
43
|
+
|
44
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
45
|
+
|
46
|
+
To install this gem onto your local machine, run `bundle exec rake install`.
|
47
|
+
|
48
|
+
## Contributing
|
49
|
+
|
50
|
+
Bug reports and pull requests are welcome on [GitHub](https://github.com/amitizle/devops_toolkit).
|
51
|
+
This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
52
|
+
|
53
|
+
## License
|
54
|
+
|
55
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
56
|
+
|
57
|
+
## Code of Conduct
|
58
|
+
|
59
|
+
Everyone interacting in the DevopsToolkit project’s codebases, issue trackers, chat rooms and mailing lists is expected
|
60
|
+
to follow the [code of conduct](https://github.com/[USERNAME]/devops_toolkit/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
@@ -0,0 +1,50 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
2
|
+
require "rake/testtask"
|
3
|
+
|
4
|
+
def gem_version
|
5
|
+
File.read('VERSION').split('.').map {|i| i.to_i}
|
6
|
+
end
|
7
|
+
|
8
|
+
def bump_version(type)
|
9
|
+
major, minor, patch = gem_version
|
10
|
+
new_version = case type
|
11
|
+
when :patch
|
12
|
+
[major, minor, patch + 1]
|
13
|
+
when :minor
|
14
|
+
[major, minor + 1, 0]
|
15
|
+
when :major
|
16
|
+
[major + 1, 0, 0]
|
17
|
+
else
|
18
|
+
raise ArgumentError, "bump type #{type} is undefined"
|
19
|
+
end
|
20
|
+
puts "Old version: #{[major, minor, patch].join('.')}"
|
21
|
+
puts "New version: #{new_version.join('.')}"
|
22
|
+
File.write('VERSION', new_version.join('.'))
|
23
|
+
end
|
24
|
+
|
25
|
+
Rake::TestTask.new(:test) do |t|
|
26
|
+
t.libs << "test"
|
27
|
+
t.libs << "lib"
|
28
|
+
t.test_files = FileList["test/**/*_test.rb"]
|
29
|
+
end
|
30
|
+
|
31
|
+
desc 'alias for bump:minor'
|
32
|
+
task :bump => 'bump:minor'
|
33
|
+
namespace :bump do
|
34
|
+
desc 'bump gem version, patch (major.minor.patch)'
|
35
|
+
task :patch do
|
36
|
+
bump_version(:patch)
|
37
|
+
end
|
38
|
+
|
39
|
+
desc 'bump gem version, minor (major.minor.patch)'
|
40
|
+
task :minor do
|
41
|
+
bump_version(:minor)
|
42
|
+
end
|
43
|
+
|
44
|
+
desc 'bump gem version, major (major.minor.patch)'
|
45
|
+
task :major do
|
46
|
+
bump_version(:major)
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
task :default => :test
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.1.0
|
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "devops_toolkit"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require "devops_toolkit/version"
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "devops_toolkit"
|
8
|
+
spec.version = DevopsToolkit::VERSION
|
9
|
+
spec.authors = ["Amit Goldberg"]
|
10
|
+
spec.email = ["amit.goldberg@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{Collection of tools for DevOps}
|
13
|
+
spec.description = %q{Collection of tools for DevOps}
|
14
|
+
spec.homepage = "https://127.0.0.1"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
18
|
+
f.match(%r{^(test|spec|features)/})
|
19
|
+
end
|
20
|
+
spec.bindir = "exe"
|
21
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
22
|
+
spec.require_paths = ["lib"]
|
23
|
+
|
24
|
+
spec.add_runtime_dependency 'thor', '~> 0.20'
|
25
|
+
spec.add_runtime_dependency 'netaddr', '~> 1.5'
|
26
|
+
spec.add_development_dependency 'bundler', '~> 1.15'
|
27
|
+
spec.add_development_dependency 'rake', '~> 10.0'
|
28
|
+
spec.add_development_dependency 'minitest', '~> 5.0'
|
29
|
+
end
|
data/exe/devops-toolkit
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
require 'thor'
|
2
|
+
|
3
|
+
module DevopsToolkit
|
4
|
+
class Runner < Thor
|
5
|
+
def self.load_tasks
|
6
|
+
tasks_dir = File.expand_path(File.join(__dir__, 'tasks'))
|
7
|
+
Dir.glob(File.join(tasks_dir, '**', '*.rb')).each do |thor_file|
|
8
|
+
next if File.directory?(thor_file)
|
9
|
+
require thor_file
|
10
|
+
Thor::Util.load_thorfile(thor_file)
|
11
|
+
end
|
12
|
+
# define subcommands per task, by class
|
13
|
+
# TODO change, no evals
|
14
|
+
DevopsToolkit::Tasks.constants.select {|c| DevopsToolkit::Tasks.const_get(c).is_a? Class}.each do |klass_sym|
|
15
|
+
klass = Object.const_get("DevopsToolkit::Tasks::#{klass_sym}")
|
16
|
+
desc klass::COMMAND, klass::DESC
|
17
|
+
subcommand klass::COMMAND, klass
|
18
|
+
end
|
19
|
+
|
20
|
+
end
|
21
|
+
self.load_tasks
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
require 'netaddr'
|
2
|
+
|
3
|
+
module DevopsToolkit
|
4
|
+
module Tasks
|
5
|
+
class CIDR < Thor
|
6
|
+
DESC = 'CIDR related tasks'
|
7
|
+
COMMAND = 'cidr'
|
8
|
+
|
9
|
+
# TODO ipv6
|
10
|
+
desc 'size', 'get the address size of a given cidr block'
|
11
|
+
method_option :ipv6, type: :boolean, default: false, desc: 'Use IPV6'
|
12
|
+
method_option :ipv4, type: :boolean, default: true, desc: 'Use IPV4 (default)'
|
13
|
+
def size(cidr_block)
|
14
|
+
begin
|
15
|
+
cidr = NetAddr::CIDR.create(cidr_block)
|
16
|
+
puts "Block #{cidr_block} has #{cidr.size} addresses in network"
|
17
|
+
rescue Exception => e
|
18
|
+
puts "#{e.class}: #{e.message}"
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
|
2
|
+
module DevopsToolkit
|
3
|
+
module Tasks
|
4
|
+
class SSH < Thor
|
5
|
+
DESC = 'SSH and SSH configuration tasks'
|
6
|
+
COMMAND = 'ssh'
|
7
|
+
|
8
|
+
desc 'known_hosts', 'Delete a key from the known_hosts file'
|
9
|
+
method_option :known_hosts, type: :string, default: '~/.ssh/known_hosts', desc: 'known_hosts file'
|
10
|
+
method_option :line, type: :numeric, desc: 'the line # to delete', required: true
|
11
|
+
def known_hosts
|
12
|
+
full_known_hosts_path = File.expand_path(options[:known_hosts])
|
13
|
+
puts "Removing line #{options[:line]} from #{full_known_hosts_path}"
|
14
|
+
begin
|
15
|
+
if !options[:line].is_a?(Integer)
|
16
|
+
raise ArgumentError, 'line must be an integer'
|
17
|
+
end
|
18
|
+
# Should be not too big of a file, so we probably
|
19
|
+
# can read all of it to memory
|
20
|
+
lines = File.readlines(full_known_hosts_path).map {|l| l.strip}
|
21
|
+
deleted_line = lines.delete_at(options[:line] - 1)
|
22
|
+
puts "Deleted: #{deleted_line}"
|
23
|
+
File.write(full_known_hosts_path, "#{lines.join("\n")}\n")
|
24
|
+
rescue Exception => e
|
25
|
+
puts "#{e.class}: #{e.message}"
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
metadata
ADDED
@@ -0,0 +1,134 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: devops_toolkit
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Amit Goldberg
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-08-26 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: thor
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0.20'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0.20'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: netaddr
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.5'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.5'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: bundler
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.15'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.15'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rake
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '10.0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '10.0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: minitest
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '5.0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '5.0'
|
83
|
+
description: Collection of tools for DevOps
|
84
|
+
email:
|
85
|
+
- amit.goldberg@gmail.com
|
86
|
+
executables:
|
87
|
+
- devops-toolkit
|
88
|
+
- ikopico
|
89
|
+
extensions: []
|
90
|
+
extra_rdoc_files: []
|
91
|
+
files:
|
92
|
+
- ".gitignore"
|
93
|
+
- ".travis.yml"
|
94
|
+
- CODE_OF_CONDUCT.md
|
95
|
+
- Gemfile
|
96
|
+
- LICENSE.txt
|
97
|
+
- README.md
|
98
|
+
- Rakefile
|
99
|
+
- VERSION
|
100
|
+
- bin/console
|
101
|
+
- bin/setup
|
102
|
+
- devops_toolkit.gemspec
|
103
|
+
- exe/devops-toolkit
|
104
|
+
- exe/ikopico
|
105
|
+
- lib/devops_toolkit.rb
|
106
|
+
- lib/devops_toolkit/runner.rb
|
107
|
+
- lib/devops_toolkit/tasks/cidr.rb
|
108
|
+
- lib/devops_toolkit/tasks/ssh.rb
|
109
|
+
- lib/devops_toolkit/version.rb
|
110
|
+
homepage: https://127.0.0.1
|
111
|
+
licenses:
|
112
|
+
- MIT
|
113
|
+
metadata: {}
|
114
|
+
post_install_message:
|
115
|
+
rdoc_options: []
|
116
|
+
require_paths:
|
117
|
+
- lib
|
118
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
119
|
+
requirements:
|
120
|
+
- - ">="
|
121
|
+
- !ruby/object:Gem::Version
|
122
|
+
version: '0'
|
123
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
124
|
+
requirements:
|
125
|
+
- - ">="
|
126
|
+
- !ruby/object:Gem::Version
|
127
|
+
version: '0'
|
128
|
+
requirements: []
|
129
|
+
rubyforge_project:
|
130
|
+
rubygems_version: 2.6.11
|
131
|
+
signing_key:
|
132
|
+
specification_version: 4
|
133
|
+
summary: Collection of tools for DevOps
|
134
|
+
test_files: []
|