-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfactor.gemspec
30 lines (27 loc) · 1.15 KB
/
factor.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
# encoding: UTF-8
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'factor/version'
Gem::Specification.new do |s|
s.name = 'factor'
s.version = Factor::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Maciej Skierkowski']
s.email = ['maciej@factor.io']
s.homepage = 'https://factor.io'
s.summary = 'CLI to manager workflows on Factor.io'
s.description = 'CLI to manager workflows on Factor.io'
s.files = Dir.glob('lib/**/*.rb')
s.test_files = Dir.glob("./{test,spec,features}/*.rb")
s.executables = ['factor']
s.require_paths = ['lib']
s.add_runtime_dependency 'commander', '~> 4.3.0'
s.add_runtime_dependency 'rainbow', '~> 2.0.0'
s.add_runtime_dependency 'configatron', '~> 4.5.0'
s.add_runtime_dependency 'rest-client', '~> 1.8.0'
s.add_runtime_dependency 'wrong', '~> 0.7.1'
s.add_runtime_dependency 'rspec', '~> 3.2.0'
s.add_development_dependency 'codeclimate-test-reporter', '~> 0.4.7'
s.add_development_dependency 'rake', '~> 10.4.2'
s.add_development_dependency 'guard', '~> 2.12.5'
s.add_development_dependency 'guard-rspec', '~> 4.5.0'
end