sunomono 0.3.1 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +82 -24
- data/SUNOMONO_APPIUM.md +18 -0
- data/SUNOMONO_CALABASH.md +19 -0
- data/lib/helpers/sunomono_helpers.rb +19 -0
- data/lib/{skeleton → skeleton_appium}/.gitignore +0 -0
- data/lib/skeleton_appium/Gemfile +8 -0
- data/lib/{skeleton → skeleton_appium}/README.md +0 -0
- data/lib/{skeleton → skeleton_appium}/config/cucumber.yml +0 -0
- data/lib/{skeleton → skeleton_appium}/config/email/template.html +0 -0
- data/lib/{skeleton → skeleton_appium}/config/scripts/android/run_tests_all_devices.sh +0 -0
- data/lib/{skeleton → skeleton_appium}/config/scripts/android/start_emulators.sh +0 -0
- data/lib/{skeleton → skeleton_appium}/config/scripts/android/stop_emulators.sh +0 -0
- data/lib/{skeleton → skeleton_appium}/config/scripts/break_build_if_failed.sh +0 -0
- data/lib/{skeleton → skeleton_appium}/config/scripts/check_if_tests_failed.sh +0 -0
- data/lib/{skeleton → skeleton_appium}/config/scripts/ios/build_app.rb +0 -0
- data/lib/{skeleton → skeleton_appium}/config/scripts/ios/build_app.yml +0 -0
- data/lib/{skeleton → skeleton_appium}/config/scripts/ios/devices.txt +0 -0
- data/lib/{skeleton → skeleton_appium}/config/scripts/ios/run_tests_all_devices.sh +0 -0
- data/lib/{skeleton → skeleton_appium}/features/android/features/.gitkeep +0 -0
- data/lib/{skeleton → skeleton_appium}/features/android/screens/.gitkeep +0 -0
- data/lib/{skeleton → skeleton_appium}/features/android/step_definitions/.gitkeep +0 -0
- data/lib/{skeleton → skeleton_appium}/features/android/support/hooks.rb +0 -0
- data/lib/{skeleton → skeleton_appium}/features/ios/features/.gitkeep +0 -0
- data/lib/{skeleton → skeleton_appium}/features/ios/screens/.gitkeep +0 -0
- data/lib/{skeleton → skeleton_appium}/features/ios/step_definitions/.gitkeep +0 -0
- data/lib/skeleton_appium/features/support/android/appium.txt +4 -0
- data/lib/skeleton_appium/features/support/env.rb +21 -0
- data/lib/{skeleton → skeleton_appium}/features/support/exceptions.rb +0 -0
- data/lib/{skeleton/features/ios/support/02_pre_stop_hooks.rb → skeleton_appium/features/support/hooks.rb} +0 -0
- data/lib/skeleton_appium/features/support/ios/appium.txt +5 -0
- data/lib/{skeleton → skeleton_appium}/screenshots/android/.gitkeep +0 -0
- data/lib/{skeleton → skeleton_appium}/screenshots/ios/.gitkeep +0 -0
- data/lib/skeleton_calabash/.gitignore +9 -0
- data/lib/{skeleton → skeleton_calabash}/Gemfile +0 -0
- data/lib/skeleton_calabash/README.md +165 -0
- data/lib/skeleton_calabash/config/cucumber.yml +7 -0
- data/lib/skeleton_calabash/config/email/template.html +14 -0
- data/lib/{skeleton → skeleton_calabash}/config/load_classes.rb +0 -0
- data/lib/skeleton_calabash/config/scripts/android/run_tests_all_devices.sh +41 -0
- data/lib/skeleton_calabash/config/scripts/android/start_emulators.sh +52 -0
- data/lib/skeleton_calabash/config/scripts/android/stop_emulators.sh +13 -0
- data/lib/skeleton_calabash/config/scripts/break_build_if_failed.sh +6 -0
- data/lib/skeleton_calabash/config/scripts/check_if_tests_failed.sh +11 -0
- data/lib/skeleton_calabash/config/scripts/ios/build_app.rb +71 -0
- data/lib/skeleton_calabash/config/scripts/ios/build_app.yml +13 -0
- data/lib/skeleton_calabash/config/scripts/ios/devices.txt +4 -0
- data/lib/skeleton_calabash/config/scripts/ios/run_tests_all_devices.sh +57 -0
- data/lib/skeleton_calabash/features/android/features/.gitkeep +0 -0
- data/lib/skeleton_calabash/features/android/screens/.gitkeep +0 -0
- data/lib/skeleton_calabash/features/android/step_definitions/.gitkeep +0 -0
- data/lib/{skeleton → skeleton_calabash}/features/android/support/app_installation_hooks.rb +0 -0
- data/lib/{skeleton → skeleton_calabash}/features/android/support/app_life_cycle_hooks.rb +0 -0
- data/lib/skeleton_calabash/features/android/support/hooks.rb +0 -0
- data/lib/skeleton_calabash/features/ios/features/.gitkeep +0 -0
- data/lib/skeleton_calabash/features/ios/screens/.gitkeep +0 -0
- data/lib/skeleton_calabash/features/ios/step_definitions/.gitkeep +0 -0
- data/lib/{skeleton → skeleton_calabash}/features/ios/support/01_launch.rb +0 -0
- data/lib/skeleton_calabash/features/ios/support/02_pre_stop_hooks.rb +0 -0
- data/lib/{skeleton → skeleton_calabash}/features/support/env.rb +0 -0
- data/lib/skeleton_calabash/features/support/exceptions.rb +11 -0
- data/lib/skeleton_calabash/screenshots/android/.gitkeep +0 -0
- data/lib/skeleton_calabash/screenshots/ios/.gitkeep +0 -0
- data/lib/sunomono/version.rb +1 -1
- data/lib/sunomono.rb +134 -47
- data/lib/templates/appium_base_screen.tt +13 -0
- data/lib/templates/appium_base_steps.tt +46 -0
- data/lib/templates/appium_screen.tt +7 -0
- data/spec/sunomono_test.rb +33 -31
- metadata +65 -32
data/spec/sunomono_test.rb
CHANGED
@@ -3,19 +3,21 @@ require 'sunomono'
|
|
3
3
|
describe Sunomono do
|
4
4
|
|
5
5
|
before(:each) do
|
6
|
+
@directory = Dir.pwd
|
6
7
|
@project_name = 'Sunomono_test'
|
7
8
|
@feature_name = 'sunomono'
|
9
|
+
@calabash = 'calabash'
|
8
10
|
end
|
9
11
|
|
10
12
|
after(:each) do
|
11
|
-
Dir.chdir(
|
12
|
-
|
13
|
+
Dir.chdir(@directory)
|
14
|
+
FileUtils.rm_rf(@project_name)
|
13
15
|
end
|
14
16
|
|
15
17
|
describe 'Sunomono gem commands' do
|
16
18
|
context 'Returns project created with all files' do
|
17
19
|
it 'Create new project using default command' do
|
18
|
-
system "sunomono new '#{@project_name}' > /dev/null"
|
20
|
+
system "sunomono new '#{@calabash}' '#{@project_name}' > /dev/null"
|
19
21
|
|
20
22
|
expect(Dir.entries(@project_name)).
|
21
23
|
to include('screenshots', 'features', 'config', 'README.md', 'Gemfile', '.gitignore')
|
@@ -51,7 +53,7 @@ describe Sunomono do
|
|
51
53
|
|
52
54
|
context 'Try creates new project with a invalid argument' do
|
53
55
|
it 'Project will not be generated' do
|
54
|
-
system "suno new '#{@project_name}' invalid argument > /dev/null"
|
56
|
+
system "suno new '#{@calabash}' '#{@project_name}' invalid argument > /dev/null"
|
55
57
|
|
56
58
|
expect(Dir.entries(".")).
|
57
59
|
not_to include("#{@project_name}")
|
@@ -70,11 +72,11 @@ describe Sunomono do
|
|
70
72
|
|
71
73
|
context 'Generate Feature' do
|
72
74
|
it 'Generates all files' do
|
73
|
-
system "sunomono new '#{@project_name}' > /dev/null"
|
75
|
+
system "sunomono new '#{@calabash}' '#{@project_name}' > /dev/null"
|
74
76
|
|
75
77
|
Dir.chdir(@project_name)
|
76
78
|
|
77
|
-
system "sunomono generate feature '#{@feature_name}' > /dev/null"
|
79
|
+
system "sunomono generate calabash-feature '#{@feature_name}' > /dev/null"
|
78
80
|
|
79
81
|
expect(Dir.entries("features")).
|
80
82
|
to include("#{@feature_name}.feature")
|
@@ -87,11 +89,11 @@ describe Sunomono do
|
|
87
89
|
end
|
88
90
|
|
89
91
|
it 'Generate feature in pt' do
|
90
|
-
system "suno new '#{@project_name}' > /dev/null"
|
92
|
+
system "suno new '#{@calabash}' '#{@project_name}' > /dev/null"
|
91
93
|
|
92
94
|
Dir.chdir(@project_name)
|
93
95
|
|
94
|
-
system "suno generate feature '#{@feature_name}' --lang=pt > /dev/null"
|
96
|
+
system "suno generate calabash-feature '#{@feature_name}' --lang=pt > /dev/null"
|
95
97
|
|
96
98
|
expect(File.readlines("features/#{@feature_name}.feature")).
|
97
99
|
to include("# language: pt\n", "Funcionalidade: #{@feature_name.capitalize} \n", "\n", " Contexto:\n", " # Insira os passos\n", " \n", " Cenário: Primeiro Cenario\n", " # Insira os passos\n")
|
@@ -100,11 +102,11 @@ describe Sunomono do
|
|
100
102
|
end
|
101
103
|
|
102
104
|
it 'Generate feature in en' do
|
103
|
-
system "suno new '#{@project_name}' > /dev/null"
|
105
|
+
system "suno new '#{@calabash}' '#{@project_name}' > /dev/null"
|
104
106
|
|
105
107
|
Dir.chdir(@project_name)
|
106
108
|
|
107
|
-
system "suno generate feature '#{@feature_name}' > /dev/null"
|
109
|
+
system "suno generate calabash-feature '#{@feature_name}' > /dev/null"
|
108
110
|
|
109
111
|
expect(File.readlines("features/#{@feature_name}.feature")).
|
110
112
|
to include("# language: en\n", "Feature: #{@feature_name.capitalize} \n", "\n", " Background:\n", " # Insert steps\n", " \n", " Scenario: First Scenario\n", " # Insert steps\n")
|
@@ -113,11 +115,11 @@ describe Sunomono do
|
|
113
115
|
end
|
114
116
|
|
115
117
|
it 'Generates with alias command g' do
|
116
|
-
system "suno new '#{@project_name}' > /dev/null"
|
118
|
+
system "suno new '#{@calabash}' '#{@project_name}' > /dev/null"
|
117
119
|
|
118
120
|
Dir.chdir(@project_name)
|
119
121
|
|
120
|
-
system "suno g feature '#{@feature_name}' > /dev/null"
|
122
|
+
system "suno g calabash-feature '#{@feature_name}' > /dev/null"
|
121
123
|
|
122
124
|
expect(Dir.entries("features")).
|
123
125
|
to include("#{@feature_name}.feature")
|
@@ -132,11 +134,11 @@ describe Sunomono do
|
|
132
134
|
|
133
135
|
context 'Try Generates a feature with a invalid argument' do
|
134
136
|
it 'Feature will be not created' do
|
135
|
-
system "sunomono new '#{@project_name}' > /dev/null"
|
137
|
+
system "sunomono new '#{@calabash}' '#{@project_name}' > /dev/null"
|
136
138
|
|
137
139
|
Dir.chdir(@project_name)
|
138
140
|
|
139
|
-
system "sunomono generate feature '#{@feature_name}' invalid_argument > /dev/null"
|
141
|
+
system "sunomono generate calabash-feature '#{@feature_name}' invalid_argument > /dev/null"
|
140
142
|
|
141
143
|
expect(Dir.entries("features")).
|
142
144
|
not_to include("#{@feature_name}.feature")
|
@@ -149,11 +151,11 @@ describe Sunomono do
|
|
149
151
|
end
|
150
152
|
|
151
153
|
it 'Feature will be not created using alias command suno with a invalid argument' do
|
152
|
-
system "suno new '#{@project_name}'", :out => File::NULL
|
154
|
+
system "suno new '#{@calabash}' '#{@project_name}'", :out => File::NULL
|
153
155
|
|
154
156
|
Dir.chdir(@project_name)
|
155
157
|
|
156
|
-
system "suno generate feature '#{@feature_name}' invalid_argument > /dev/null"
|
158
|
+
system "suno generate calabash-feature '#{@feature_name}' invalid_argument > /dev/null"
|
157
159
|
|
158
160
|
expect(Dir.entries("features")).
|
159
161
|
not_to include("#{@feature_name}.feature")
|
@@ -167,11 +169,11 @@ describe Sunomono do
|
|
167
169
|
|
168
170
|
|
169
171
|
it 'Feature will be not created using alias command with a invalid argument' do
|
170
|
-
system "suno new '#{@project_name}' > /dev/null"
|
172
|
+
system "suno new '#{@calabash}' '#{@project_name}' > /dev/null"
|
171
173
|
|
172
174
|
Dir.chdir(@project_name)
|
173
175
|
|
174
|
-
system "suno g feature '#{@feature_name}' invalid_argument > /dev/null"
|
176
|
+
system "suno g calabash-feature '#{@feature_name}' invalid_argument > /dev/null"
|
175
177
|
|
176
178
|
expect(Dir.entries("features")).
|
177
179
|
not_to include("#{@feature_name}.feature")
|
@@ -186,7 +188,7 @@ describe Sunomono do
|
|
186
188
|
|
187
189
|
context 'Generates an OS independent step' do
|
188
190
|
it 'Cant generates .feature and screens files' do
|
189
|
-
system "suno new #{@project_name} > /dev/null"
|
191
|
+
system "suno new #{@calabash} #{@project_name} > /dev/null"
|
190
192
|
|
191
193
|
Dir.chdir(@project_name)
|
192
194
|
|
@@ -203,11 +205,11 @@ describe Sunomono do
|
|
203
205
|
|
204
206
|
context 'Generates an OS indenpendent screen' do
|
205
207
|
it 'Cant generates .feature and step_definition files' do
|
206
|
-
system "suno new #{@project_name} > /dev/null"
|
208
|
+
system "suno new #{@calabash} #{@project_name} > /dev/null"
|
207
209
|
|
208
210
|
Dir.chdir(@project_name)
|
209
211
|
|
210
|
-
system "sunomono generate screen #{@feature_name} > /dev/null"
|
212
|
+
system "sunomono generate screen #{@calabash} #{@feature_name} > /dev/null"
|
211
213
|
|
212
214
|
expect(Dir.entries("features")).
|
213
215
|
not_to include("#{@feature_name}.feature")
|
@@ -218,11 +220,11 @@ describe Sunomono do
|
|
218
220
|
|
219
221
|
context 'commands to generates an Android dependent files' do
|
220
222
|
it 'Create folders to android plataform' do
|
221
|
-
system "suno new #{@project_name} > /dev/null"
|
223
|
+
system "suno new #{@calabash} #{@project_name} > /dev/null"
|
222
224
|
|
223
225
|
Dir.chdir(@project_name)
|
224
226
|
|
225
|
-
system "suno generate android-feature #{@feature_name} > /dev/null"
|
227
|
+
system "suno generate android-feature #{@calabash} #{@feature_name} > /dev/null"
|
226
228
|
|
227
229
|
expect(Dir.entries("features/android/features")).
|
228
230
|
to include("#{@feature_name}.feature")
|
@@ -233,11 +235,11 @@ describe Sunomono do
|
|
233
235
|
end
|
234
236
|
|
235
237
|
it 'Create screen to android plataform' do
|
236
|
-
system "suno new #{@project_name} > /dev/null"
|
238
|
+
system "suno new #{@calabash} #{@project_name} > /dev/null"
|
237
239
|
|
238
240
|
Dir.chdir(@project_name)
|
239
241
|
|
240
|
-
system "suno generate android-screen #{@feature_name} > /dev/null"
|
242
|
+
system "suno generate android-screen #{@calabash} #{@feature_name} > /dev/null"
|
241
243
|
|
242
244
|
expect(Dir.entries("features/android/features")).
|
243
245
|
not_to include("#{@feature_name}.feature")
|
@@ -246,7 +248,7 @@ describe Sunomono do
|
|
246
248
|
end
|
247
249
|
|
248
250
|
it 'Create step to android plataform' do
|
249
|
-
system "suno new #{@project_name} > /dev/null"
|
251
|
+
system "suno new #{@calabash} #{@project_name} > /dev/null"
|
250
252
|
|
251
253
|
Dir.chdir(@project_name)
|
252
254
|
|
@@ -261,11 +263,11 @@ describe Sunomono do
|
|
261
263
|
|
262
264
|
context 'commands to generates an IOS dependent files' do
|
263
265
|
it 'Create folders to IOS plataform' do
|
264
|
-
system "suno new #{@project_name} > /dev/null"
|
266
|
+
system "suno new #{@calabash} #{@project_name} > /dev/null"
|
265
267
|
|
266
268
|
Dir.chdir(@project_name)
|
267
269
|
|
268
|
-
system "suno generate ios-feature #{@feature_name} > /dev/null"
|
270
|
+
system "suno generate ios-feature #{@calabash} #{@feature_name} > /dev/null"
|
269
271
|
|
270
272
|
expect(Dir.entries("features/ios/features")).
|
271
273
|
to include("#{@feature_name}.feature")
|
@@ -276,11 +278,11 @@ describe Sunomono do
|
|
276
278
|
end
|
277
279
|
|
278
280
|
it 'Create screen to IOS plataform' do
|
279
|
-
system "suno new #{@project_name} > /dev/null"
|
281
|
+
system "suno new #{@calabash} #{@project_name} > /dev/null"
|
280
282
|
|
281
283
|
Dir.chdir(@project_name)
|
282
284
|
|
283
|
-
system "suno generate ios-screen #{@feature_name} > /dev/null"
|
285
|
+
system "suno generate ios-screen #{@calabash} #{@feature_name} > /dev/null"
|
284
286
|
|
285
287
|
expect(Dir.entries("features/ios/features")).
|
286
288
|
not_to include("#{@feature_name}.feature")
|
@@ -289,7 +291,7 @@ describe Sunomono do
|
|
289
291
|
end
|
290
292
|
|
291
293
|
it 'Create step to IOS plataform' do
|
292
|
-
system "suno new #{@project_name} > /dev/null"
|
294
|
+
system "suno new #{@calabash} #{@project_name} > /dev/null"
|
293
295
|
|
294
296
|
Dir.chdir(@project_name)
|
295
297
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sunomono
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Oscar Tanner
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2017-
|
12
|
+
date: 2017-10-25 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -113,6 +113,8 @@ files:
|
|
113
113
|
- LICENSE.txt
|
114
114
|
- README.md
|
115
115
|
- Rakefile
|
116
|
+
- SUNOMONO_APPIUM.md
|
117
|
+
- SUNOMONO_CALABASH.md
|
116
118
|
- bin/suno
|
117
119
|
- bin/sunomono
|
118
120
|
- circle.yml
|
@@ -121,41 +123,72 @@ files:
|
|
121
123
|
- lib/aws/ios/01_launch.rb
|
122
124
|
- lib/helpers/sunomono_helpers.rb
|
123
125
|
- lib/helpers/zip_helpers.rb
|
124
|
-
- lib/
|
125
|
-
- lib/
|
126
|
-
- lib/
|
127
|
-
- lib/
|
128
|
-
- lib/
|
129
|
-
- lib/
|
130
|
-
- lib/
|
131
|
-
- lib/
|
132
|
-
- lib/
|
133
|
-
- lib/
|
134
|
-
- lib/
|
135
|
-
- lib/
|
136
|
-
- lib/
|
137
|
-
- lib/
|
138
|
-
- lib/
|
139
|
-
- lib/
|
140
|
-
- lib/
|
141
|
-
- lib/
|
142
|
-
- lib/
|
143
|
-
- lib/
|
144
|
-
- lib/
|
145
|
-
- lib/
|
146
|
-
- lib/
|
147
|
-
- lib/
|
148
|
-
- lib/
|
149
|
-
- lib/
|
150
|
-
- lib/
|
151
|
-
- lib/
|
152
|
-
- lib/
|
153
|
-
- lib/
|
126
|
+
- lib/skeleton_appium/.gitignore
|
127
|
+
- lib/skeleton_appium/Gemfile
|
128
|
+
- lib/skeleton_appium/README.md
|
129
|
+
- lib/skeleton_appium/config/cucumber.yml
|
130
|
+
- lib/skeleton_appium/config/email/template.html
|
131
|
+
- lib/skeleton_appium/config/scripts/android/run_tests_all_devices.sh
|
132
|
+
- lib/skeleton_appium/config/scripts/android/start_emulators.sh
|
133
|
+
- lib/skeleton_appium/config/scripts/android/stop_emulators.sh
|
134
|
+
- lib/skeleton_appium/config/scripts/break_build_if_failed.sh
|
135
|
+
- lib/skeleton_appium/config/scripts/check_if_tests_failed.sh
|
136
|
+
- lib/skeleton_appium/config/scripts/ios/build_app.rb
|
137
|
+
- lib/skeleton_appium/config/scripts/ios/build_app.yml
|
138
|
+
- lib/skeleton_appium/config/scripts/ios/devices.txt
|
139
|
+
- lib/skeleton_appium/config/scripts/ios/run_tests_all_devices.sh
|
140
|
+
- lib/skeleton_appium/features/android/features/.gitkeep
|
141
|
+
- lib/skeleton_appium/features/android/screens/.gitkeep
|
142
|
+
- lib/skeleton_appium/features/android/step_definitions/.gitkeep
|
143
|
+
- lib/skeleton_appium/features/android/support/hooks.rb
|
144
|
+
- lib/skeleton_appium/features/ios/features/.gitkeep
|
145
|
+
- lib/skeleton_appium/features/ios/screens/.gitkeep
|
146
|
+
- lib/skeleton_appium/features/ios/step_definitions/.gitkeep
|
147
|
+
- lib/skeleton_appium/features/support/android/appium.txt
|
148
|
+
- lib/skeleton_appium/features/support/env.rb
|
149
|
+
- lib/skeleton_appium/features/support/exceptions.rb
|
150
|
+
- lib/skeleton_appium/features/support/hooks.rb
|
151
|
+
- lib/skeleton_appium/features/support/ios/appium.txt
|
152
|
+
- lib/skeleton_appium/screenshots/android/.gitkeep
|
153
|
+
- lib/skeleton_appium/screenshots/ios/.gitkeep
|
154
|
+
- lib/skeleton_calabash/.gitignore
|
155
|
+
- lib/skeleton_calabash/Gemfile
|
156
|
+
- lib/skeleton_calabash/README.md
|
157
|
+
- lib/skeleton_calabash/config/cucumber.yml
|
158
|
+
- lib/skeleton_calabash/config/email/template.html
|
159
|
+
- lib/skeleton_calabash/config/load_classes.rb
|
160
|
+
- lib/skeleton_calabash/config/scripts/android/run_tests_all_devices.sh
|
161
|
+
- lib/skeleton_calabash/config/scripts/android/start_emulators.sh
|
162
|
+
- lib/skeleton_calabash/config/scripts/android/stop_emulators.sh
|
163
|
+
- lib/skeleton_calabash/config/scripts/break_build_if_failed.sh
|
164
|
+
- lib/skeleton_calabash/config/scripts/check_if_tests_failed.sh
|
165
|
+
- lib/skeleton_calabash/config/scripts/ios/build_app.rb
|
166
|
+
- lib/skeleton_calabash/config/scripts/ios/build_app.yml
|
167
|
+
- lib/skeleton_calabash/config/scripts/ios/devices.txt
|
168
|
+
- lib/skeleton_calabash/config/scripts/ios/run_tests_all_devices.sh
|
169
|
+
- lib/skeleton_calabash/features/android/features/.gitkeep
|
170
|
+
- lib/skeleton_calabash/features/android/screens/.gitkeep
|
171
|
+
- lib/skeleton_calabash/features/android/step_definitions/.gitkeep
|
172
|
+
- lib/skeleton_calabash/features/android/support/app_installation_hooks.rb
|
173
|
+
- lib/skeleton_calabash/features/android/support/app_life_cycle_hooks.rb
|
174
|
+
- lib/skeleton_calabash/features/android/support/hooks.rb
|
175
|
+
- lib/skeleton_calabash/features/ios/features/.gitkeep
|
176
|
+
- lib/skeleton_calabash/features/ios/screens/.gitkeep
|
177
|
+
- lib/skeleton_calabash/features/ios/step_definitions/.gitkeep
|
178
|
+
- lib/skeleton_calabash/features/ios/support/01_launch.rb
|
179
|
+
- lib/skeleton_calabash/features/ios/support/02_pre_stop_hooks.rb
|
180
|
+
- lib/skeleton_calabash/features/support/env.rb
|
181
|
+
- lib/skeleton_calabash/features/support/exceptions.rb
|
182
|
+
- lib/skeleton_calabash/screenshots/android/.gitkeep
|
183
|
+
- lib/skeleton_calabash/screenshots/ios/.gitkeep
|
154
184
|
- lib/sunomono.rb
|
155
185
|
- lib/sunomono/locales/en.yml
|
156
186
|
- lib/sunomono/locales/pt.yml
|
157
187
|
- lib/sunomono/version.rb
|
158
188
|
- lib/templates/android_screen_base.tt
|
189
|
+
- lib/templates/appium_base_screen.tt
|
190
|
+
- lib/templates/appium_base_steps.tt
|
191
|
+
- lib/templates/appium_screen.tt
|
159
192
|
- lib/templates/base_steps.tt
|
160
193
|
- lib/templates/feature.tt
|
161
194
|
- lib/templates/ios_screen_base.tt
|