mirror of
https://github.com/zhigang1992/ProMotion.git
synced 2026-04-23 20:00:52 +08:00
Locked dependencies
This commit is contained in:
12
Gemfile.lock
12
Gemfile.lock
@@ -2,8 +2,8 @@ PATH
|
||||
remote: .
|
||||
specs:
|
||||
ProMotion (1.2.0)
|
||||
methadone
|
||||
motion-require (>= 0.0.6)
|
||||
methadone (~> 1.3.2)
|
||||
motion-require (~> 0.2.0)
|
||||
|
||||
GEM
|
||||
remote: https://rubygems.org/
|
||||
@@ -21,8 +21,8 @@ PLATFORMS
|
||||
|
||||
DEPENDENCIES
|
||||
ProMotion!
|
||||
motion-redgreen
|
||||
motion-redgreen (~> 0.1.0)
|
||||
motion-require
|
||||
motion-stump
|
||||
rake
|
||||
webstub
|
||||
motion-stump (~> 0.3.1)
|
||||
rake (~> 10.1.1)
|
||||
webstub (~> 1.0.1)
|
||||
|
||||
@@ -2,14 +2,14 @@
|
||||
require File.expand_path('../lib/ProMotion/version', __FILE__)
|
||||
|
||||
Gem::Specification.new do |gem|
|
||||
gem.authors = ["Jamon Holmgren", "Silas Matson", "ClearSight Studio"]
|
||||
gem.email = ["jamon@clearsightstudio.com", "silas@clearsightstudio.com", "contact@clearsightstudio.com"]
|
||||
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.authors = ["Jamon Holmgren", "Silas Matson", "Mark Rickert"]
|
||||
gem.email = ["jamon@clearsightstudio.com", "silas@clearsightstudio.com", "mark@mohawkapps.com"]
|
||||
gem.summary = "ProMotion makes it easy to build RubyMotion iOS screen-based apps."
|
||||
gem.description = "
|
||||
ProMotion is a RubyMotion gem that makes iOS development more like Ruby and less like Objective-C.
|
||||
It introduces a clean, Ruby-style syntax for building screens that is easy to learn and remember and
|
||||
abstracts a ton of boilerplate UIViewController, UINavigationController, and other iOS code into a
|
||||
simple, Ruby-like DSL.
|
||||
"
|
||||
gem.homepage = "https://github.com/clearsightstudio/ProMotion"
|
||||
gem.license = 'MIT'
|
||||
@@ -21,10 +21,10 @@ Gem::Specification.new do |gem|
|
||||
gem.require_paths = ["lib"]
|
||||
gem.version = ProMotion::VERSION
|
||||
|
||||
gem.add_dependency "motion-require", ">= 0.0.6"
|
||||
gem.add_development_dependency("webstub")
|
||||
gem.add_development_dependency("motion-stump")
|
||||
gem.add_development_dependency("motion-redgreen")
|
||||
gem.add_development_dependency("rake")
|
||||
gem.add_dependency("methadone")
|
||||
gem.add_dependency "motion-require", "~> 0.2.0"
|
||||
gem.add_development_dependency("webstub", "~> 1.0.1")
|
||||
gem.add_development_dependency("motion-stump", "~> 0.3.1")
|
||||
gem.add_development_dependency("motion-redgreen", "~> 0.1.0")
|
||||
gem.add_development_dependency("rake", "~> 10.1.1")
|
||||
gem.add_dependency("methadone", "~> 1.3.2")
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user