-
Notifications
You must be signed in to change notification settings - Fork 142
/
artoo.gemspec
32 lines (28 loc) · 1.24 KB
/
artoo.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
31
32
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "artoo/version"
Gem::Specification.new do |s|
s.name = "artoo"
s.version = Artoo::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Ron Evans", "Adrian Zankich", "Ari Lerner", "Mario Ricalde", "Daniel Fischer"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/hybridgroup/artoo"
s.summary = %q{Ruby-based microframework for robotics}
s.description = %q{Ruby-based microframework for robotics}
s.license = 'Apache 2.0'
s.rubyforge_project = "artoo"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_runtime_dependency 'celluloid', '~> 0.16.0'
s.add_runtime_dependency 'celluloid-io', '~> 0.16.0'
s.add_runtime_dependency 'http', '~> 0.6.1'
s.add_runtime_dependency 'reel', '~> 0.5.0'
s.add_runtime_dependency 'multi_json', '~> 1.10.1'
s.add_runtime_dependency 'rake'
s.add_runtime_dependency 'pry', '~> 0.9.0'
s.add_runtime_dependency 'thor', '~> 0.19.1'
s.add_runtime_dependency 'robeaux', '0.4.1'
end