-
Notifications
You must be signed in to change notification settings - Fork 13
/
iron_worker.gemspec
23 lines (19 loc) · 1009 Bytes
/
iron_worker.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require File.expand_path('../lib/iron_worker/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Travis Reeder"]
gem.email = ["[email protected]"]
gem.description = "The official IronWorker gem for IronWorker by Iron.io. http://iron.io"
gem.summary = "The official IronWorker gem for IronWorker by Iron.io. http://iron.io"
gem.homepage = "https://github.com/iron-io/iron_worker_ruby"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "iron_worker"
gem.require_paths = ["lib"]
gem.version = IronWorker::VERSION
gem.required_rubygems_version = ">= 1.3.6"
gem.required_ruby_version = Gem::Requirement.new(">= 2.0")
gem.add_runtime_dependency "iron_core", ">= 1.0.12", '< 2'
gem.add_runtime_dependency 'rest', '~> 3.0', ">= 3.0.8"
gem.add_runtime_dependency "json", "~> 2.0"
end