forked from evothings/evothings-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.rb
executable file
·258 lines (211 loc) · 5.25 KB
/
build.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
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
# Build script for Evothings Example apps.
#
# How to run:
# ruby build.rb
#
require 'fileutils'
include FileUtils::Verbose
###### Examples ######
def buildArduinoBLE
destPath = 'examples/arduino-ble/app'
copyCommon(destPath)
copyJQuery(destPath)
copyWhereIsTheArduinoCode(destPath)
end
def buildArduinoInputTCP
# Copy CSS/JS files.
destPath = 'examples/arduino-input-tcp/app'
copyCommon(destPath)
copyJQuery(destPath)
copyArduinoTCP(destPath)
copyWhereIsTheArduinoCode(destPath)
# Copy Arduino files.
destPath = 'examples/arduino-input-tcp'
copyArduinoEthernet(destPath)
copyArduinoWiFi(destPath)
end
def buildArduinoLEDOnOffBLE
destPath = 'examples/arduino-led-onoff-ble/app'
copyCommon(destPath)
copyJQuery(destPath)
copyArduinoBLE(destPath)
copyWhereIsTheArduinoCode(destPath)
end
def buildArduinoLEDOnOffTCP
# Copy CSS/JS files.
destPath = 'examples/arduino-led-onoff-tcp/app'
copyCommon(destPath)
copyJQuery(destPath)
copyArduinoTCP(destPath)
copyWhereIsTheArduinoCode(destPath)
# Copy Arduino files.
destPath = 'examples/arduino-led-onoff-tcp'
copyArduinoEthernet(destPath)
copyArduinoWiFi(destPath)
end
def buildArduinoScriptableTCP
# Copy CSS/JS files.
destPath = 'examples/arduino-scriptable-tcp/app'
copyCommon(destPath)
copyJQuery(destPath)
copyArduinoTCP(destPath)
copyWhereIsTheArduinoCode(destPath)
# Copy Arduino files.
destPath = 'examples/arduino-scriptable-tcp'
copyArduinoEthernet(destPath)
copyArduinoWiFi(destPath)
end
def buildBLEScan
destPath = 'examples/ble-scan'
copyCommon(destPath)
copyJQuery(destPath)
end
def buildTISensorTagDemo
destPath = 'examples/ti-sensortag-demo'
copyCommon(destPath)
copyJQuery(destPath)
copyEasyBLE(destPath)
end
def buildTISensorTagSensors
destPath = 'examples/ti-sensortag-sensors'
copyCommon(destPath)
copyUtil(destPath)
copyTISensorTag(destPath)
end
def buildCordovaBasic
destPath = 'examples/cordova-basic'
copyCommon(destPath)
copyJQuery(destPath)
end
def buildHelloWorld
destPath = 'examples/hello-world'
copyCommon(destPath)
end
def buildHueLights
destPath = 'examples/hue-lights'
copyCommon(destPath)
copyJQuery(destPath)
end
def buildIBeaconScan
destPath = 'examples/ibeacon-scan'
copyCommon(destPath)
copyJQuery(destPath)
end
def buildEstimoteScan
destPath = 'examples/estimote-scan'
copyCommon(destPath)
copyJQuery(destPath)
end
def buildNordicBLE
destPath = 'examples/nordic-ble'
copyCommon(destPath)
copyJQuery(destPath)
copyNordicBLE(destPath)
end
def buildRFduinoLEDOnOff
destPath = 'examples/rfduino-led-onoff/app'
copyCommon(destPath)
copyJQuery(destPath)
copyRFduinoBLE(destPath)
copyWhereIsTheArduinoCode(destPath)
end
def buildLightblueBeanBasic
destPath = 'examples/lightblue-bean-basic/app'
copyCommon(destPath)
copyEasyBLE(destPath)
end
def buildRedBearLabSimpleControl
destPath = 'examples/redbearlab-simplecontrol'
copyCommon(destPath)
copyEasyBLE(destPath)
copyJQuery(destPath)
end
def buildRedBearLabSimpleChat
destPath = 'examples/redbearlab-simplechat'
copyCommon(destPath)
copyEasyBLE(destPath)
copyJQuery(destPath)
end
###### Copy helpers ######
### CSS/JS ###
def copyCommon(destPath)
copyUI(destPath)
copyEvothings(destPath)
end
def copyUI(destPath)
copyDir('resources/ui', destPath)
end
def copyJQuery(destPath)
copyDir('resources/libs/jquery', destPath + '/libs')
end
def copyEvothings(destPath)
copyDir('resources/libs/evothings/evothings.js', destPath + '/libs/evothings')
end
def copyEasyBLE(destPath)
copyUtil(destPath)
copyDir('resources/libs/evothings/easyble', destPath + '/libs/evothings')
end
def copyArduinoBLE(destPath)
copyEasyBLE(destPath)
copyDir('resources/libs/evothings/arduinoble', destPath + '/libs/evothings')
end
def copyArduinoTCP(destPath)
copyDir('resources/libs/evothings/arduinotcp', destPath + '/libs/evothings')
end
def copyNordicBLE(destPath)
copyEasyBLE(destPath)
copyDir('resources/libs/evothings/nordicble', destPath + '/libs/evothings')
end
def copyRFduinoBLE(destPath)
copyEasyBLE(destPath)
copyDir('resources/libs/evothings/rfduinoble', destPath + '/libs/evothings')
end
def copyTISensorTag(destPath)
copyEasyBLE(destPath)
copyDir('resources/libs/evothings/tisensortag', destPath + '/libs/evothings')
end
def copyUtil(destPath)
copyDir('resources/libs/evothings/util', destPath + '/libs/evothings')
end
def copyWhereIsTheArduinoCode(destPath)
copyFile(
'resources/txt/where-is-the-arduino-code.txt',
destPath + '/where-is-the-arduino-code.txt')
end
### Arduino .ino files ###
def copyArduinoEthernet(destPath)
copyDir('resources/arduino/arduinoethernet', destPath + '/arduinoethernet')
end
def copyArduinoWiFi(destPath)
copyDir('resources/arduino/arduinowifi', destPath + '/arduinowifi')
end
### General copy methods ###
def copyDir(srcPath, destPath)
mkpath(destPath)
cp_r(srcPath, destPath)
end
def copyFile(srcPath, destPath)
cp(srcPath, destPath)
end
###### Script entry point ######
def build
buildArduinoBLE
buildArduinoInputTCP
buildArduinoLEDOnOffBLE
buildArduinoLEDOnOffTCP
buildArduinoScriptableTCP
buildBLEScan
buildCordovaBasic
buildEstimoteScan
buildHelloWorld
buildHueLights
buildIBeaconScan
buildLightblueBeanBasic
buildNordicBLE
buildRedBearLabSimpleControl
buildRedBearLabSimpleChat
buildRFduinoLEDOnOff
buildTISensorTagDemo
buildTISensorTagSensors
end
build