forked from MakeAWishFoundation/SwiftyMocky
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
172 lines (152 loc) · 7.14 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
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
## [ Mocks Generation ] ########################################################
task :mock do
print_info "Generating mocks using local CLI version"
sh "swift run swiftymocky generate"
end
task :mock_legacy do
print_info "Generating mocks - iOS"
sh "Pods/Sourcery/bin/sourcery --config .legacy/.mocky.iOS.yml"
print_info "Generating mocks - tvOS"
sh "Pods/Sourcery/bin/sourcery --config .legacy/.mocky.tvOS.yml"
print_info "Generating mocks - macOS"
sh "Pods/Sourcery/bin/sourcery --config .legacy/.mocky.macOS.yml"
print_info "Generating mocks - SPM"
sh "Pods/Sourcery/bin/sourcery --config .legacy/.mocky.spm.yml"
end
task :debug do
print_info "Generating mocks - iOS - debug"
sh "Pods/Sourcery/bin/sourcery --config .mocky.iOS.yml --disableCache --verbose"
print_info "Generating mocks - tvOS - debug"
sh "Pods/Sourcery/bin/sourcery --config .mocky.tvOS.yml --disableCache --verbose"
print_info "Generating mocks - macOS - debug"
sh "Pods/Sourcery/bin/sourcery --config .mocky.macOS.yml --disableCache --verbose"
print_info "Generating mocks - SPM - debug"
sh "Pods/Sourcery/bin/sourcery --config .mocky.spm.yml --disableCache --verbose"
end
## [ Tools ] ###################################################################
task :update do
print_info "Re-Generating main template from parts"
# Prepare SwiftyMocky template
destination = "../Sources/SwiftyMocky/Mock.swifttemplate"
sh "rm -rf #{destination}"
sh "cd ./Templates && echo \"<%_\" > #{destination}"
sh "cd ./Templates && echo 'let mockTypeName = \"Mock\"' >> #{destination}"
sh "cd ./Templates && cat ArgumentsHelper.swift >> #{destination}"
sh "cd ./Templates && echo \"_%>\" >> #{destination}"
sh "cd ./Templates && cat Header-Mock.swifttemplate >> #{destination}"
sh "cd ./Templates && cat Imports.swifttemplate >> #{destination}"
sh "cd ./Templates && echo \"<%_\" >> #{destination}"
sh "cd ./Templates && cat Current.swift >> #{destination}"
sh "cd ./Templates && cat TemplateHelper.swift >> #{destination}"
sh "cd ./Templates && cat Helpers.swift >> #{destination}"
sh "cd ./Templates && cat ParameterWrapper.swift >> #{destination}"
sh "cd ./Templates && cat TypeWrapper.swift >> #{destination}"
sh "cd ./Templates && cat MethodWrapper.swift >> #{destination}"
sh "cd ./Templates && cat SubscriptWrapper.swift >> #{destination}"
sh "cd ./Templates && cat VariableWrapper.swift >> #{destination}"
sh "cd ./Templates && echo \"_%>\" >> #{destination}"
sh "cd ./Templates && cat Main.swifttemplate >> #{destination}"
# Prepare SwiftyPrototype template
destination = "../Sources/SwiftyPrototype/Prototype.swifttemplate"
sh "rm -rf #{destination}"
sh "cd ./Templates && echo \"<%_\" > #{destination}"
sh "cd ./Templates && echo 'let mockTypeName = \"Prototype\"' >> #{destination}"
sh "cd ./Templates && cat ArgumentsHelper.swift >> #{destination}"
sh "cd ./Templates && echo \"_%>\" >> #{destination}"
sh "cd ./Templates && cat Header-Prototype.swifttemplate >> #{destination}"
sh "cd ./Templates && cat Imports.swifttemplate >> #{destination}"
sh "cd ./Templates && echo \"<%_\" >> #{destination}"
sh "cd ./Templates && cat Current.swift >> #{destination}"
sh "cd ./Templates && cat TemplateHelper.swift >> #{destination}"
sh "cd ./Templates && cat Helpers.swift >> #{destination}"
sh "cd ./Templates && cat ParameterWrapper.swift >> #{destination}"
sh "cd ./Templates && cat TypeWrapper.swift >> #{destination}"
sh "cd ./Templates && cat MethodWrapper.swift >> #{destination}"
sh "cd ./Templates && cat SubscriptWrapper.swift >> #{destination}"
sh "cd ./Templates && cat VariableWrapper.swift >> #{destination}"
sh "cd ./Templates && echo \"_%>\" >> #{destination}"
sh "cd ./Templates && cat Main.swifttemplate >> #{destination}"
end
task :test do
# fast test for development
sh "rake update"
sh "rake mock"
sh "ice test"
end
task :xcode do
sh "open SwiftyMocky.xcworkspace"
end
## [ Deploy ] ##################################################################
desc "Sets new version"
task :version do
ARGV.each { |a| task a.to_sym do ; end }
version_from = ARGV[1].to_s.strip
version_to = ARGV[2].to_s.strip
if version_from && !version_from.empty? && version_to && !version_to.empty?
print_info "Changing version from #{version_from} -> #{version_to} !\n"
sh("sed -i '' 's|#{version_from}|#{version_to}|g' ./.jazzy.yaml")
sh("sed -i '' 's|#{version_from}|#{version_to}|g' ./README.md")
sh("sed -i '' 's|#{version_from}|#{version_to}|g' ./guides/Installation.md")
sh("sed -i '' 's|#{version_from}|#{version_to}|g' ./guides/Overview.md")
sh("sed -i '' 's|#{version_from}|#{version_to}|g' ./SwiftyMocky-Runtime/Info.plist")
sh("sed -i '' 's|#{version_from}|#{version_to}|g' ./Templates/Header-Mock.swifttemplate")
sh("sed -i '' 's|#{version_from}|#{version_to}|g' ./Templates/Header-Prototype.swifttemplate")
sh("sed -i '' 's|#{version_from}|#{version_to}|g' ./SwiftyMocky.podspec")
sh("sed -i '' 's|#{version_from}|#{version_to}|g' ./SwiftyPrototype.podspec")
sh("sed -i '' 's|#{version_from}|#{version_to}|g' ./Makefile")
sh("sed -i '' 's|#{version_from}|#{version_to}|g' ./Sources/CLI/Core/Application.swift")
else
print("Missing versions!\n")
exit(1)
end
end
namespace :cli do
desc "Assetizes templates for specified version of a SwiftyMocky into CLI"
task :assetize do
sh "swift run swiftymocky assetize"
end
task :build do
print_info "Building CLI release version binary"
# sh "swift build -c release --disable-sandbox"
sh "swift build -c release"
sh "cp ./.build/release/swiftymocky ./bin/swiftymocky"
end
end
desc "Deploys new version of a binary, by pushing passed tag"
task :deploy do
ARGV.each { |a| task a.to_sym do ; end }
version = ARGV[1].to_s
if version && !version.to_s.strip.empty?
sh("git commit -m \"Deploy #{version}\"")
sh("git push")
sh("git tag #{version} && git push --tags")
sh("pod trunk push ./SwiftyMocky.podspec")
sh("pod trunk push ./SwiftyPrototype.podspec")
else
print("Missing version!\n")
exit(1)
end
end
## [ CocoaPods ] ###############################################################
desc "Install project dependencies"
desc "In case of need, pod repo update will be invoked"
task :pods do
begin
sh "pod install"
rescue
print_info "Install failed - trying repo update"
sh "pod repo update"
sh "pod install"
end
end
## [ Docs ] ####################################################################
desc "Update docs"
task :docs do
print_info "Updating docs"
sh "sourcekitten doc -- -workspace SwiftyMocky.xcworkspace -scheme SwiftyMocky > docs.json && jazzy --clean && rm docs.json"
end
## [ Helpers ] #################################################################
def print_info(str)
(red,clr) = (`tput colors`.chomp.to_i >= 8) ? %W(\e[33m \e[m) : ["", ""]
puts red, "== #{str.chomp} ==", clr
end