-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpushwagner.gemspec
33 lines (25 loc) · 1.1 KB
/
pushwagner.gemspec
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
27
28
29
30
31
32
33
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'pushwagner/version'
Gem::Specification.new do |s|
s.name = 'pushwagner'
s.version = Pushwagner::VERSION
s.date = Time.now.strftime("%Y-%m-%d")
s.description = "Simple remote automation wrapper."
s.summary = "Simple remote automation wrapper (wip)."
s.authors = ["Ole Christian Rynning"]
s.email = '[email protected]'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files spec`.split("\n")
s.licenses = ['MIT']
s.homepage = 'http://rubygems.org/gems/pushwagner'
s.executables = ['pw']
s.require_paths = ['lib']
s.required_rubygems_version = Gem::Requirement.new('>= 1.3.6')
s.add_runtime_dependency 'net-ssh', '~> 4.2', '>= 4.2'
s.add_runtime_dependency 'net-scp', '~> 1.2', '>= 1.2.1'
s.add_runtime_dependency 'nokogiri', '~> 1.8', '>= 1.8.2'
s.add_runtime_dependency 'colorize', '~> 0.7'
s.add_development_dependency 'bundler', '~> 1.7'
s.add_development_dependency 'rake', '~> 13.0'
s.add_development_dependency 'rspec', '~> 2.11'
end