-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathorchestra.gemspec
26 lines (22 loc) · 988 Bytes
/
orchestra.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift lib unless $LOAD_PATH.include?(lib)
require 'orchestra/version'
Gem::Specification.new do |spec|
spec.name = "ntl-orchestra"
spec.version = Orchestra::VERSION
spec.authors = ["ntl"]
spec.email = ["[email protected]"]
spec.summary = %q{Orchestrate complex operations with ease.}
spec.description = %q{Orchestra is an orchestration framework for designing complex operations in an object oriented fashion.}
spec.homepage = "https://github.com/ntl/orchestra"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0")
spec.executables = []
spec.test_files = spec.files.grep(%r{^test/})
spec.require_paths = %w(lib)
spec.add_dependency "invokr", "~> 0.9.7"
spec.add_development_dependency "bundler", "~> 1.6"
spec.add_development_dependency "pry"
spec.add_development_dependency "rake", "~> 10.0"
end