-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp_properties.rb
72 lines (54 loc) · 1.19 KB
/
app_properties.rb
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
class AppProperties
VERSION = '1.1'
SKU_NAME = 'convostoppersfree' #default
COMPANY_NAME = 'com.iconoclastlabs.'
def name
'Convo Killer'
end
def version
VERSION
end
def frameworks
["iAd"]
end
def contributors
["Gant Laborde", "Matt Garrison"]
end
def developer_certificate
"iPhone Developer: Gant Laborde (56HAJP2GEQ)"
end
def distribution_certificate
"iPhone Distribution: Iconoclast Labs LLC"
end
def provisioning
'./provisioning' #symlink is custom to each user's machine
end
def deployment_target
'6.0'
end
def delegate
'app_delegate'
end
# def icons
# icn = ["#{self.name}.png", "#{self.name}-72.png", "#{self.name}@2x.png"]
# end
def devices
[:iphone]
end
# def orientations
# [:portrait, :landscape_left, :landscape_right] #:portrait_upside_down
# end
def identifier
COMPANY_NAME + SKU_NAME
end
def description
%W[
"How about that weather, Bob?"
Tired of water cooler chats?
Is having too many friends getting you down?
End that lighthearted banter in a single sentence
with our help. Conversation Stoppers is here to
the rescue.
]
end
end