Created
October 29, 2013 15:56
-
-
Save rjsamson/7217381 to your computer and use it in GitHub Desktop.
Todo App Gemfile and Rakefile
This file contains 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
source "https://rubygems.org" | |
ruby "2.0.0" | |
gem "ProMotion", "~> 1.0.4" | |
gem "teacup" | |
gem 'formotion' | |
gem 'motion_data_wrapper' | |
gem "sugarcube", :require => 'sugarcube-all' |
This file contains 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/template/ios' | |
require "rubygems" | |
require 'bundler' | |
Bundler.require | |
Motion::Project::App.setup do |app| | |
# Use `rake config' to see complete project settings. | |
app.name = 'ToDone' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment