Sha256: b54199424ad89d1722c757b8384808244797e9bb75caf309b8b4534928b115bd

Contents?: true

Size: 488 Bytes

Versions: 20

Compression:

Stored size: 488 Bytes

Contents

$:.unshift('/Library/RubyMotion/lib')
if ENV.fetch('platform', 'ios') == 'ios'
  require 'motion/project/template/ios'
elsif ENV['platform'] == 'osx'
  require 'motion/project/template/osx'
else
  raise "Unsupported platform #{ENV['platform']}"
end
require 'bundler'
Bundler.require


Motion::Project::App.setup do |app|
  # Use `rake config' to see complete project settings.
  app.name = 'teacup'
  app.identifier = 'com.rubymotion.teacup'
  app.specs_dir = "spec/#{app.template}/"
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
teacup-2.1.13 Rakefile
teacup-2.1.12 Rakefile
teacup-2.1.11 Rakefile
teacup-2.1.10 Rakefile
teacup-2.1.9 Rakefile
teacup-2.1.8 Rakefile
teacup-2.1.7 Rakefile
teacup-2.1.6 Rakefile
teacup-2.1.5 Rakefile
teacup-2.1.4 Rakefile
teacup-2.1.3 Rakefile
teacup-2.1.2 Rakefile
teacup-2.1.1 Rakefile
teacup-2.1.0 Rakefile
teacup-2.0.6 Rakefile
teacup-2.0.5 Rakefile
teacup-2.0.4 Rakefile
teacup-2.0.3 Rakefile
teacup-2.0.2 Rakefile
teacup-2.0.0 Rakefile