forked from jamonholmgren/ProMotion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProMotion.gemspec
26 lines (23 loc) · 1.29 KB
/
ProMotion.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/ProMotion/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Jamon Holmgren", "Silas Matson", "ClearSight Studio"]
gem.description = "ProMotion is a new way to easily build RubyMotion iOS apps."
gem.summary = "
ProMotion is a new way to organize RubyMotion apps. Instead of dealing
with UIViewControllers, you work with Screens. Screens are
a logical way to think of your app and include a ton of great
utilities to make iOS development more like Ruby and less like Objective-C.
"
gem.homepage = "https://github.com/clearsightstudio/ProMotion"
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 = "ProMotion"
gem.require_paths = ["lib"]
gem.version = ProMotion::VERSION
gem.add_development_dependency("motion-stump")
gem.add_development_dependency("motion-redgreen")
gem.add_development_dependency("rake")
end