-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
29 lines (25 loc) · 894 Bytes
/
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
$:.unshift("/Library/RubyMotion/lib")
require 'motion/project'
require 'motion-testflight'
require 'YAML'
local_config = YAML::load(File.open('local_config.yml'))
Motion::Project::App.setup do |app|
# Use `rake config' to see complete project settings.
app.name = 'Taucher'
app.identifier = 'io.pb.Taucher'
app.device_family = :ipad
app.interface_orientations = [:landscape_left, :landscape_right]
app.icons = ['icon-144.png']
app.prerendered_icon = true
app.vendor_project('vendor/CocoaOSC',
:xcode
# :xcodeproject => "CocoaOSC.xcodeproj",
# :target => "CocoaOSC",
# :products => ['libCocoaOSC.a'],
# :headers_dir => 'CocoaOSC'
)
app.frameworks << 'CFNetwork'
app.testflight.sdk = 'vendor/TestFlightSDK'
app.testflight.api_token = local_config['testflight_api_token']
app.testflight.team_token = local_config['testflight_team_token']
end