Created
September 19, 2012 18:23
-
-
Save cicloid/3751272 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .repl_history | |
| build | |
| resources/*.nib | |
| resources/*.momd | |
| resources/*.storyboardc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class AppDelegate | |
| def application(application, didFinishLaunchingWithOptions:launchOptions) | |
| true | |
| end | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| gem "bubble-wrap", git: "https://github.com/rubymotion/BubbleWrap.git" | |
| gem 'teacup' | |
| gem 'sugarcube', :git => 'https://github.com/rubymotion/sugarcube' | |
| gem 'sweettea' | |
| gem 'routable' | |
| gem 'cocoapods', '0.13' | |
| gem "motion-cocoapods" | |
| gem "motion-testflight" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| GIT | |
| remote: https://github.com/rubymotion/BubbleWrap.git | |
| revision: 0ee3dc34f8ac5ab5070c8c5507f5cce7d13cd439 | |
| specs: | |
| bubble-wrap (1.1.3) | |
| GIT | |
| remote: https://github.com/rubymotion/sugarcube | |
| revision: bd8bf63b13b100957e823487a88e9c1176efe159 | |
| specs: | |
| sugarcube (0.9.2) | |
| rake | |
| GEM | |
| specs: | |
| activesupport (3.2.8) | |
| i18n (~> 0.6) | |
| multi_json (~> 1.0) | |
| addressable (2.3.2) | |
| cocoapods (0.13.0) | |
| activesupport (~> 3.2.6) | |
| colored (~> 1.2) | |
| escape (~> 0.0.4) | |
| faraday (~> 0.8.1) | |
| json (~> 1.7.3) | |
| octokit (~> 1.7.0) | |
| open4 (~> 1.3.0) | |
| rake (~> 0.9.0) | |
| xcodeproj (>= 0.3.0) | |
| colored (1.2) | |
| escape (0.0.4) | |
| faraday (0.8.4) | |
| multipart-post (~> 1.1) | |
| faraday_middleware (0.8.8) | |
| faraday (>= 0.7.4, < 0.9) | |
| hashie (1.2.0) | |
| i18n (0.6.1) | |
| json (1.7.5) | |
| motion-cocoapods (1.1.4) | |
| cocoapods (>= 0.9.1) | |
| motion-testflight (1.1) | |
| multi_json (1.3.6) | |
| multipart-post (1.1.5) | |
| octokit (1.7.0) | |
| addressable (~> 2.2) | |
| faraday (~> 0.8) | |
| faraday_middleware (~> 0.8) | |
| hashie (~> 1.2) | |
| multi_json (~> 1.3) | |
| open4 (1.3.0) | |
| rake (0.9.2.2) | |
| routable (0.0.2) | |
| sweettea (0.2.8) | |
| rake | |
| sugarcube | |
| teacup | |
| teacup (0.3.12) | |
| rake | |
| xcodeproj (0.3.3) | |
| activesupport (~> 3.2.6) | |
| PLATFORMS | |
| ruby | |
| DEPENDENCIES | |
| bubble-wrap! | |
| cocoapods (= 0.13) | |
| motion-cocoapods | |
| motion-testflight | |
| routable | |
| sugarcube! | |
| sweettea | |
| teacup |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| describe "Application 'test'" do | |
| before do | |
| @app = UIApplication.sharedApplication | |
| end | |
| it "has one window" do | |
| @app.windows.size.should == 1 | |
| end | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding: utf-8 -*- | |
| $:.unshift("/Library/RubyMotion/lib") | |
| require 'motion/project' | |
| require 'bundler' | |
| Bundler.require | |
| Motion::Project::App.setup do |app| | |
| # Use `rake config' to see complete project settings. | |
| app.name = 'test' | |
| app.pods do | |
| pod 'AFNetworking', '1.0RC1' | |
| pod 'TransloaditAPIClient', :git => 'https://github.com/citivox/TransloaditAPIClient.git' | |
| pod 'MTStatusBarOverlay', :git => 'https://github.com/wilhelmbot/MTStatusBarOverlay.git' | |
| pod 'SVPullToRefresh' | |
| pod 'NYXImagesKit', :git => 'https://github.com/cicloid/NYXImagesKit.git' | |
| # Should be exclusive of Debug configuration | |
| pod 'TestFlightSDK' | |
| pod 'UIDeviceAddition' | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment