forked from matryer/xbar
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Podfile
126 lines (106 loc) · 2.67 KB
/
Podfile
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
use_frameworks!
inhibit_all_warnings!
platform :osx, "10.11"
workspace "BitBar.xcworkspace"
target "BitBar" do
use_frameworks!
project "BitBar.xcodeproj"
pod "Hue"
pod "ReSwift"
pod "SwiftyBeaver"
pod "SwiftyUserDefaults"
pod "Alamofire"
pod "Sparkle"
pod "AlamofireImage"
pod "AsyncSwift"
pod "Cent"
pod "BonMot"
pod "OcticonsSwift"
pod "Ansi"
pod "Dollar"
pod "Emojize"
pod "PathKit"
pod "FootlessParser", git: "https://github.com/oleander/FootlessParser.git"
pod "DateToolsSwift", git: "https://github.com/MatthewYork/DateTools.git"
target "BitBarTests" do
inherit! :search_paths
pod "Nimble"
pod "Quick"
end
end
target "Config" do
use_frameworks!
project "BitBar.xcodeproj"
pod "PathKit"
pod "Toml", git: "https://github.com/oleander/swift-toml.git"
pod "FootlessParser", git: "https://github.com/oleander/FootlessParser.git"
target "ConfigTests" do
use_frameworks!
inherit! :search_paths
pod "Nimble"
pod "Quick"
end
target "Plugin" do
use_frameworks!
inherit! :search_paths
project "BitBar.xcodeproj"
pod "SwiftyTimer"
pod "PathKit"
pod "SwiftyBeaver"
pod "DateToolsSwift", git: "https://github.com/MatthewYork/DateTools.git"
pod "Script", git: "https://github.com/oleander/Script.git"
pod "Parser", git: "https://github.com/oleander/BitBarParser.git"
pod "FootlessParser", git: "https://github.com/oleander/FootlessParser.git"
pod "AsyncSwift"
pod "Cent"
pod "Dollar"
target "PluginTests" do
inherit! :search_paths
pod "Nimble"
pod "Quick"
end
end
end
target "Packages" do
use_frameworks!
project "Packages/Packages.xcodeproj"
target "API" do
use_frameworks!
inherit! :search_paths
project "BitBar.xcodeproj"
pod "AsyncSwift"
pod "SwiftyBeaver"
target "APITests" do
inherit! :search_paths
pod "Nimble"
pod "Just"
pod "Quick"
end
end
end
target "SharedTests" do
use_frameworks!
inherit! :search_paths
pod "Nimble"
pod "Quick"
end
pre_install do
system "make prebuild_vapor symlink_vapor"
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['PROVISIONING_PROFILE_SPECIFIER'] = ""
end
end
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['CONFIGURATION_BUILD_DIR'] = '$PODS_CONFIGURATION_BUILD_DIR'
end
end
installer.pods_project.build_configurations.each do |config|
config.build_settings['LD_RUNPATH_SEARCH_PATHS'] = [
'$(FRAMEWORK_SEARCH_PATHS)'
]
end
end