forked from infinitered/redpotion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathredpotion.gemspec
31 lines (26 loc) · 1.17 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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "project/version"
Gem::Specification.new do |spec|
spec.name = "redpotion"
spec.authors = ["InfiniteRed", "ClearSight Studio"]
spec.email = ["[email protected]", "[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 = "https://github.com/infinitered/redpotion"
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.1"
spec.add_runtime_dependency "ProMotion", "~> 2.2"
spec.add_runtime_dependency "motion_print"
spec.add_runtime_dependency "motion-cocoapods"
spec.add_development_dependency "rake"
end