forked from j-mcnally/ProMotion-formotion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProMotion-formotion.gemspec
26 lines (23 loc) · 1.24 KB
/
ProMotion-formotion.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/ProMotion/formotion/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Stephan Toggweiler"]
gem.email = ["[email protected]"]
gem.description = "ProMotion-formotion bind ProMotion and formotion together."
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/rheoli/ProMotion-formotion"
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-formotion"
gem.require_paths = ["lib"]
gem.version = ProMotion::Formotion::VERSION
gem.add_runtime_dependency("ProMotion", ">= 1.1.1")
gem.add_runtime_dependency("formotion", ">= 1.6")
gem.add_runtime_dependency("motion-require", ">= 0.1.1")
end