-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlarrow-runner.gemspec
More file actions
39 lines (31 loc) · 1.49 KB
/
larrow-runner.gemspec
File metadata and controls
39 lines (31 loc) · 1.49 KB
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
34
35
36
37
38
39
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'larrow/runner/version'
Gem::Specification.new do |spec|
spec.name = "larrow-runner"
spec.version = Larrow::Runner::VERSION
spec.authors = ["fsword"]
spec.email = ["li.jianye@gmail.com"]
spec.summary = %q{Core application of larrow, CLI based}
spec.description = %q{Automatically build your app from source code}
spec.homepage = "http://github.com/fsword/larrow-core"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 1.6"
spec.add_development_dependency 'rake', '~> 10'
spec.add_development_dependency "rspec",'~> 3.0'
spec.add_development_dependency "simplecov", '~> 0.9'
spec.add_development_dependency "parallel_tests", '~> 1.0'
spec.add_runtime_dependency 'thor', '~> 0.19'
spec.add_runtime_dependency "pry", '~> 0.10', '0.10.0'
spec.add_runtime_dependency "pry-nav", '~> 0.2', '0.2.4'
spec.add_runtime_dependency 'net-ssh', '~> 2.9'
spec.add_runtime_dependency 'net-scp', '~> 1.2'
spec.add_runtime_dependency "faraday", '~> 0.9'
spec.add_runtime_dependency 'larrow-qingcloud', '~> 0.0', '>= 0.0.2'
spec.add_runtime_dependency 'promising', '~> 0.3'
end