-
Notifications
You must be signed in to change notification settings - Fork 148
/
ProMotion.gemspec
33 lines (29 loc) · 1.6 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
27
28
29
30
31
32
33
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/ProMotion/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = "ProMotion"
gem.authors = ["Jamon Holmgren", "Mark Rickert", "Silas Matson"]
gem.description = "ProMotion gives RubyMotion iOS view controllers a more Ruby-like API."
gem.summary = "
ProMotion is a fast way to get started building RubyMotion apps. Instead of dealing
with UIViewControllers, UITableViewControllers, and the like, you work with Screens.
We abstract the view controller boilerplate to make iOS development more like Ruby
and less like Objective-C. With a memorable, concise API and a friendly, helpful
community, ProMotion is a great way to get started with iOS development.
"
gem.homepage = "https://github.com/infinitered/ProMotion"
gem.license = "MIT"
gem.files = Dir.glob("lib/**/*.rb")
gem.files << "README.md"
gem.executables << "promotion"
gem.test_files = Dir.glob("spec/**/*.rb")
gem.require_paths = ["lib"]
gem.version = ProMotion::VERSION
gem.add_runtime_dependency("methadone", "~> 1.7")
gem.add_runtime_dependency("motion_print", "~> 1.0")
gem.add_development_dependency("webstub", "~> 1.1")
gem.add_development_dependency("motion-stump", "~> 0.3")
gem.add_development_dependency("motion-redgreen", "~> 1.0")
gem.add_development_dependency("rake")
end