-
Notifications
You must be signed in to change notification settings - Fork 40
/
redpotion.gemspec
33 lines (28 loc) · 1.18 KB
/
redpotion.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
33
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "project/version"
Gem::Specification.new do |spec|
spec.name = "redpotion"
spec.authors = ["Infinite Red"]
spec.email = ["[email protected]"]
spec.description = %q{RedPotion - The best combination of RubyMotion tools and libraries}
spec.summary = %q{RedPotion combines RMQ, ProMotion, CDQ, AFMotion, and more for the perfect mix to develop in RubyMotion fast}
spec.homepage = "http://redpotion.org"
spec.license = "MIT"
files = []
files << 'README.md'
files.concat(Dir.glob('lib/**/*.rb'))
files.concat(Dir.glob('templates/**/*.rb'))
spec.files = files
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.version = RedPotion::VERSION
spec.executables << 'potion'
spec.add_runtime_dependency "ruby_motion_query", ">= 1.7.0"
spec.add_runtime_dependency "ProMotion", ">= 2.7.1"
spec.add_runtime_dependency "motion_print"
spec.add_runtime_dependency "motion-cocoapods"
spec.add_runtime_dependency "RedAlert"
spec.add_runtime_dependency "rake"
spec.add_development_dependency "webstub"
end