-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
74 lines (59 loc) · 1.64 KB
/
Gemfile
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# A sample Gemfile
source "https://rubygems.org"
# Layout / styling gem
gem "teacup"
# Adds UI methods onto base classes in Ruby
# https://github.com/rubymotion/sugarcube
#
gem "sugarcube"
# Adds teacup to sugarcube (really nice for styling)
# https://github.com/colinta/sweettea
#
gem "sweettea"
# Cocoa wrappers for ruby
# https://github.com/rubymotion/BubbleWrap
#
gem "bubble-wrap"
# FontAwesome is a great vector-based font library
# Note: now handled by sugarcube-awesome
# https://github.com/derailed/motion-awesome
#
#gem "motion-awesome", "0.0.5"
# A string/symbol indifferent ordered hash better than HashWithIndifferentAccess
# https://github.com/derailed/motion-map
#
gem "motion-map"
# iOS Geometry in a ruby-like way
# https://github.com/clayallsopp/geomotion
#
gem "geomotion"
# Autolayout with easy ASCII art
#
gem "motion-layout"
# XRay allows the REPL console to be used on
# hardware devices. Disabled right now.
#
#gem "motion-xray"
# Add version number to app icons
#
gem "motion-rubberstamp"
# Prints objects in full color w/ proper indents
#
gem "awesome_print_motion"
# Lets us use the cocoapods ObjC dependency manager
#
gem "motion-cocoapods"
# Neat gem for creating forms on iOS
# http://clayallsopp.github.io/formotion/
#
gem "formotion", "~> 1.5.0"
# Models models models!
# https://github.com/sxross/MotionModel/
gem "motion_model", "~> 0.4.6"
#
# Promotion is great for managing "screens" or controllers
#
# Note: Currently using our fork of it until our patches are merged back upstream.
# Switch back to >=1.0.3 once pull requests are merged in.
#
gem "ProMotion", :github => "AmoebaConsulting/ProMotion", :branch => "yinsi"