-
Notifications
You must be signed in to change notification settings - Fork 6
/
Rakefile
55 lines (46 loc) · 1.57 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
48
49
50
51
52
53
54
55
# -*- coding: utf-8 -*-
$:.unshift("/Library/RubyMotion/lib")
require 'motion/project/template/ios'
begin
require 'bundler'
require 'sugarcube-nsdate'
require 'sugarcube-numbers'
require 'sugarcube-files'
Bundler.require
rescue LoadError
end
Motion::Project::App.setup do |app|
# Use `rake config' to see complete project settings.
app.name = 'Textables'
app.version = (`git rev-list HEAD --count`.strip.to_i).to_s
app.short_version = '1.1.4'
app.sdk_version = "8.1"
app.deployment_target = "7.1"
app.device_family = [:iphone]
app.interface_orientations = [:portrait, :portrait_upside_down]
app.identifier = 'com.mohawkapps.texties'
app.icons = Dir.glob("resources/Icon*.png").map{|icon| icon.split("/").last}
app.prerendered_icon = true
app.info_plist['APP_STORE_ID'] = 769404785
app.pods do
pod 'UIActionSheet+Blocks'
pod 'FlurrySDK'
pod 'Appirater'
end
app.development do
app.seed_id = '7N372VT8HB'
app.identifier = app.seed_id + '.' + app.identifier
app.entitlements['keychain-access-groups'] = [
app.identifier
]
app.entitlements['get-task-allow'] = true
app.codesign_certificate = "iPhone Developer: Mark Rickert (YA2VZGDX4S)"
app.provisioning_profile = "../Provisioning/WildcardDevelopment.mobileprovision"
end
app.release do
app.info_plist['AppStoreRelease'] = true
app.entitlements['get-task-allow'] = false
app.codesign_certificate = "iPhone Distribution: Mohawk Apps, LLC (DW9QQZR4ZL)"
app.provisioning_profile = "./provisioning/TextablesDistribution.mobileprovision"
end
end