forked from hardeep/ops
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdevops.gemspec
More file actions
26 lines (24 loc) · 851 Bytes
/
devops.gemspec
File metadata and controls
26 lines (24 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
require './lib/version.rb'
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 (EC2 etc.)"
s.authors = [ "Hardeep Shoker", "Ryan Willoughby", "Brett Rudd" ]
s.email = 'hardeepshoker@gmail.com'
s.homepage = 'https://github.com/hardeep/ops'
s.files = files
s.licenses = "MIT"
s.required_ruby_version = '>= 2.3.1'
s.bindir = 'bin'
s.require_paths = ["lib"]
s.executables = [ 'ops' ]
s.add_dependency('bundler')
s.add_dependency('i18n', '~>1.1.1')
s.add_dependency('aws-sdk-ec2', '~>1.62.0')
s.add_dependency('net-ssh', '~>5.0.2')
s.add_dependency('json', '~>2.1.0')
s.add_dependency('rake', '~>12.3.1')
end