Skip to content

Instantly share code, notes, and snippets.

@cicloid
Created September 19, 2012 18:23
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cicloid/3751272 to your computer and use it in GitHub Desktop.
Save cicloid/3751272 to your computer and use it in GitHub Desktop.
.repl_history
build
resources/*.nib
resources/*.momd
resources/*.storyboardc
class AppDelegate
def application(application, didFinishLaunchingWithOptions:launchOptions)
true
end
end
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"
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
describe "Application 'test'" do
before do
@app = UIApplication.sharedApplication
end
it "has one window" do
@app.windows.size.should == 1
end
end
# -*- 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