-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
47 lines (37 loc) · 1.38 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# -*- coding: utf-8 -*-
$:.unshift('/Library/RubyMotion/lib')
require 'motion/project/template/ios'
require 'bundler'
Bundler.require
# require 'bubble-wrap'
Motion::Project::App.setup do |app|
app.name = 'jgprogress'
app.identifier = 'com.your_domain_here.jgprogress'
app.short_version = '0.1.0'
app.version = app.short_version
app.sdk_version = '7.1'
app.deployment_target = '7.0'
# Or for iOS 6
#app.sdk_version = '6.1'
#app.deployment_target = '6.0'
app.icons = ["[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]"]
# prerendered_icon is only needed in iOS 6
#app.prerendered_icon = true
app.device_family = [:iphone, :ipad]
app.interface_orientations = [:portrait, :landscape_left, :landscape_right, :portrait_upside_down]
app.files += Dir.glob(File.join(app.project_dir, 'lib/**/*.rb'))
# Use `rake config' to see complete project settings, here are some examples:
#
# app.fonts = ['Oswald-Regular.ttf', 'FontAwesome.otf'] # These go in /resources
# app.frameworks += %w(QuartzCore CoreGraphics MediaPlayer MessageUI CoreData)
#
# app.vendor_project('vendor/Flurry', :static)
# app.vendor_project('vendor/DSLCalendarView', :static, :cflags => '-fobjc-arc') # Using arc
#
app.pods do
# pod 'AFNetworking'
# pod 'SVProgressHUD'
# pod 'JMImageCache'
pod 'JGProgressHUD'
end
end