Skip to content

Instantly share code, notes, and snippets.

@rjsamson
Created October 29, 2013 15:56
Show Gist options
  • Save rjsamson/7217381 to your computer and use it in GitHub Desktop.
Save rjsamson/7217381 to your computer and use it in GitHub Desktop.
Todo App Gemfile and Rakefile
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'
# -*- 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