forked from seanho/SimpleView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
16 lines (13 loc) · 735 Bytes
/
Rakefile
File metadata and controls
16 lines (13 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env rake
require "bundler/gem_tasks"
$:.unshift("/Library/RubyMotion/lib")
require 'motion/project'
Motion::Project::App.setup do |app|
app.name = 'SimpleViewDemo'
app.files += Dir.glob(File.join(app.project_dir, 'lib/simple_view/*.rb'))
app.files.unshift(Dir.glob(File.join(app.project_dir, 'lib/simple_view/builders/*.rb')))
app.files.unshift(File.join(app.project_dir, 'lib/simple_view/builders/ui_control_builder.rb'))
app.files.unshift(File.join(app.project_dir, 'lib/simple_view/builders/ui_view_builder.rb'))
app.files.unshift(Dir.glob(File.join(app.project_dir, 'lib/simple_view/builders/helpers/*.rb')))
app.files.unshift(Dir.glob(File.join(app.project_dir, 'lib/simple_view/extensions/*.rb')))
end