-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebistrano_cli.gemspec
29 lines (25 loc) · 1.21 KB
/
webistrano_cli.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "webistrano_cli/version"
Gem::Specification.new do |s|
s.name = "webistrano_cli"
s.version = WebistranoCli::VERSION
s.authors = ["chytreg"]
s.email = ["dariusz.gertych@gmail.com"]
s.homepage = "https://github.com/chytreg/webistrano_cli"
s.summary = %q{Allow to deploy projects from webistrano via console}
s.description = %q{Allow to deploy projects from webistrano via console}
s.license = 'MIT'
s.rubyforge_project = "webistrano_cli"
s.files = `if [ -d .git ]; then git ls-files; fi`.split("\n")
s.test_files = `if [ -d .git ]; then git ls-files -- {test,spec,features}/*; fi `.split("\n")
s.executables = `if [ -d .git ]; then git ls-files -- bin/*; fi`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_development_dependency 'rake', '~> 0.9.2'
s.add_dependency 'her', '~> 0.6.2'
s.add_dependency 'faraday_middleware','~> 0.9.0'
s.add_dependency 'multi_xml', '~> 0.5.3'
s.add_dependency 'mechanize', '~> 2.6.0'
s.add_dependency 'slop', '~> 3.4.4'
s.add_dependency 'highline', '~> 1.6.18'
end