Skip to content

Instantly share code, notes, and snippets.

@naoya
Created August 30, 2013 07:57
Show Gist options
  • Save naoya/6387346 to your computer and use it in GitHub Desktop.
Save naoya/6387346 to your computer and use it in GitHub Desktop.
class AppDelegate
def application(application, didFinishLaunchingWithOptions:launchOptions)
true
end
end
source 'https://rubygems.org'
gem 'rake'
# Add your dependencies here:
gem 'motion-my_env'
# -*- coding: utf-8 -*-
$:.unshift("/Library/RubyMotion/lib")
require 'motion/project/template/ios'
begin
require 'bundler'
Bundler.require
rescue LoadError
end
Motion::Project::App.setup do |app|
# Use `rake config' to see complete project settings.
app.name = 'myenv'
app.my_env.file = './config/environment.yaml'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment