-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathRakefile
32 lines (25 loc) · 808 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
30
31
32
# -*- coding: utf-8 -*-
$:.unshift('/Library/RubyMotion/lib')
require 'motion/project/template/ios'
require './lib/medic'
require 'motion-stump'
require 'motion-redgreen'
begin
require 'bundler'
require 'motion/project/template/gem/gem_tasks'
Bundler.require
rescue LoadError
end
Motion::Project::App.setup do |app|
app.name = 'medic'
app.seed_id = 'YC9LC2ATBH'
app.identifier = 'com.ryanlntn.medic'
app.entitlements['application-identifier'] = "#{app.seed_id}.#{app.identifier}"
app.entitlements['com.apple.developer.healthkit'] = true
app.frameworks += ['HealthKit']
app.redgreen_style = :progress
app.development do
app.codesign_certificate = 'iPhone Developer: Ryan Linton (GZY2Z654JA)'
app.provisioning_profile = 'signing/MedicDevelopment.mobileprovision'
end
end