-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRakefile
More file actions
49 lines (36 loc) · 1.47 KB
/
Rakefile
File metadata and controls
49 lines (36 loc) · 1.47 KB
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
48
49
# -*- coding: utf-8 -*-
$:.unshift("/Library/RubyMotion/lib")
require 'motion/project/template/ios'
require 'motion-pixatefreestyle'
begin
require 'bundler'
Bundler.require
rescue LoadError
end
Motion::Project::App.setup do |app|
# Use `rake config' to see complete project settings.
app.name = 'HeartMonitor' #exampleapp
app.identifier = 'com.herokuapp.equanimity'
app.codesign_certificate = 'iPhone Developer: Ian Bates (Z239DKBM5F)'
# Create ./build/iPhoneOS-7.1-Development/HeartMonitor.app/embedded.mobileprovision
# ERROR! Can't find a provisioning profile named `(?-mix:iOS Team Provisioning Profile)'
app.icons = ["logo.png", "logo@2x.png"]
# app.device_family = :iphone
# app.interface_orientations = [:portrait]
app.pixatefreestyle.framework = 'vendor/PixateFreestyle.framework'
app.provisioning_profile = '/Users/DataBates/Desktop/provision_path/HeartMonitor.mobileprovision'
# app.testflight.sdk = 'vendor/TestFlightSDK'
# app.testflight.api_token = ''
# app.testflight.team_token = 'TeamToken'
app.pods do
pod 'SVProgressHUD'
# pod 'PixateFreestyle'
end
# app.name = 'Test App'
# app.codesign_certificate = 'iPhone Distribution: Your Name Here'
# app.identifier = 'com.yourCompany.yourApp'
# app.provisioning_profile = '/path/to/your/distribution_provisioning_profile.mobileprovision'
# app.testflight.sdk = 'vendor/TestFlightSDK'
# app.testflight.api_token = 'APIToken'
# app.testflight.team_token = 'TeamToken'
end