testcentricity_web 3.0.9 → 3.0.10

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ce7b9d33fb084f3a6eb181258cf9eb01b50c5125
4
- data.tar.gz: 470a8250a74ffd814ecf135e75ad471193b77605
3
+ metadata.gz: c807060b32e4e55df7ff66b0ff352ef9fc356bb2
4
+ data.tar.gz: a72a84f943c31cfe5249faa6d5715ee68929be66
5
5
  SHA512:
6
- metadata.gz: 14d71fdfd37f86ebfbe036752486c2f91a0a81a9e7bcb227a4cdf12ad200e2ad9ed2234403e29880445c77daf049f1dba98e40d14f2068822530883c9b0d5e4d
7
- data.tar.gz: 466a446c09b02791360e5f56d99a0ba78dfff67eba04c479cd3e1d8a62353b0d368ffeb4bfb389d442e12327ed702d5a06b8c4f780b56352585a9f2f116c5311
6
+ metadata.gz: 146858e7e77f26e06cf0d70b309490c6ad8b0fae3ba7712a0728b16dd00c2f33093be26149f824548f7f625172c5b853412dac4955428487a83f9b376b616419
7
+ data.tar.gz: 4084028f03797c23747891587384c3459fe7a6db025065ef0201f0d0168812b731f3cdc5714a6321a2c6aa08a82cf9c1b73be8d8e34437c66e1227dda0847b31
data/.gitignore CHANGED
@@ -6,22 +6,15 @@ Thumbs.db
6
6
  .idea
7
7
  .settings
8
8
  .project
9
- .idea/workspace.xml
10
- .idea/.rakeTasks
11
- *.iml
12
9
 
13
- doc/*
14
- .yardoc/*
15
- notes.txt
16
- coverage
17
- .bundle
18
- .ruby-version
19
- .ruby-gemset
20
- /my_templates
10
+ /.bundle/
11
+ /.yardoc
12
+ /_yardoc/
13
+ /coverage/
14
+ /doc/
15
+ /pkg/
16
+ /spec/reports/
17
+ /tmp/
21
18
 
22
- Gemfile.lock
23
-
24
-
25
- .idea/testcentricity_web.iml
26
-
27
- .idea/.rakeTasks
19
+ # rspec failure tracking
20
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.ruby-gemset ADDED
@@ -0,0 +1 @@
1
+ testcentricity_web
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ ruby-2.3.0
data/.yardopts CHANGED
@@ -1,3 +1,3 @@
1
1
  --markup markdown
2
2
  --markup-provider redcarpet
3
- --no-private - README.md HISTORY.md LICENSE.md
3
+ --no-private - README.md CHANGELOG.md LICENSE.md
@@ -1,234 +1,318 @@
1
- # HISTORY
1
+ # CHANGELOG
2
+ All notable changes to this project will be documented in this file.
2
3
 
3
- ###Version 3.0.9
4
+ ## [3.0.10] - 2018-07-20
5
+ ### Added
6
+ * `Image.broken?` method.
7
+ * `UIElement.highlight` and `UIElement.unhighlight` methods.
4
8
 
9
+ ### Changed
10
+ * `PageObject.verify_ui_states` and `PageSection.verify_ui_states` methods now takes screenshots that display a red dashed rectangular highlight around
11
+ any UI element with property states that do not match expected results.
12
+
13
+ ### Removed
14
+ * Removed deprecated `DataObject.set_current` method.
15
+
16
+
17
+ ## [3.0.9] - 2018-07-05
18
+
19
+ ### Added
5
20
  * Added `List.choose_item` and `List.get_selected_item` methods.
6
21
  * Added `SelectList.set` method.
7
22
 
8
- ###Version 3.0.8
9
23
 
24
+ ## [3.0.8] - 2018-06-28
25
+
26
+ ### Added
10
27
  * Added `PageObject.wait_for_ajax` method.
28
+
29
+ ### Changed
11
30
  * `PageObject.verify_ui_states` and `PageSection.verify_ui_states` methods now accept optional `fail_message` string parameter to add context to error
12
31
  messages when UI verifications raise an exception.
13
32
 
14
- ###Version 3.0.7
33
+ ## [3.0.7] - 2018-06-21
15
34
 
35
+ ### Added
16
36
  * Added support for connecting to and running your tests in desktop and emulated mobile web browsers hosted on Selenium Grid and Dockerized Selenium
17
37
  Grid environments.
18
38
  * Added `Environ.report_header` method that can be used to provide formatted test environment information in HTML test results.
39
+
40
+ ### Deprecated
19
41
  * Deprecated `TestCentricity::WebDriverConnect.set_webdriver_path` method because the correct WebDriver is now automatically set.
20
42
 
21
- ###Version 3.0.6
43
+ ## [3.0.6] - 2018-06-14
22
44
 
45
+ ### Added
23
46
  * Added support for connecting to and running your tests on cloud hosted browsers on the Gridlastic cloud platform.
24
47
  * Added support for specifying Selenium WebDriver version, browser-specific WebDriver version (for Firefox, IE, and Safari), and browser console
25
48
  logs when running tests on BrowserStack hosted browsers. Refer to **section 8.5.1 (Remote desktop browsers on the BrowserStack service)** in the README.
49
+
50
+ ### Changed
26
51
  * Updated device profiles for iPhone 7 (iOS 11) with Mobile Firefox browser and iPad (iOS 11) with Mobile Firefox browser.
27
52
  * Updated device profiles for iPhone 7 (iOS 11) with Mobile Edge browser and iPad (iOS 11) with Mobile Edge browser.
28
53
  * Updated device profiles for iPhone 7 (iOS 11) with Mobile Chrome browser and iPad (iOS 11) with Mobile Chrome browser.
29
54
 
30
- ###Version 3.0.5
55
+ ## [3.0.5] - 2018-05-17
31
56
 
57
+ ### Added
32
58
  * Added `Environ.headless` method. Will return `true` if testing against a *headless* instance of Chrome or Firefox.
33
59
 
34
- ###Version 3.0.4
60
+ ## [3.0.4] - 2018-05-12
35
61
 
62
+ ### Fixed
36
63
  * Refactored `SelectList` methods to work with Capybara version 3.x.
37
64
 
38
- ###Version 3.0.3
65
+ ## [3.0.3] - 2018-05-09
39
66
 
67
+ ### Changed
40
68
  * Pinning to Capybara version 2.18.0 because Capybara 3.x breaks several `SelectList` methods.
41
69
 
42
- ###Version 3.0.2
70
+ ## [3.0.2] - 2018-05-09
43
71
 
72
+ ### Changed
44
73
  * `PageManager.find_page` method now raises an exception if the requested page object has not been defined and instantiated.
45
74
 
46
- ###Version 3.0.1
75
+ ## [3.0.1] - 2018-04-28
47
76
 
77
+ ### Changed
48
78
  * Updated device profiles for iPhone 7 (iOS 11) with Mobile Firefox browser and iPad (iOS 10) with Mobile Firefox browser.
49
79
  * Updated device profiles for iPhone 7 (iOS 11) with Mobile Edge browser and iPad (iOS 10) with Mobile Edge browser.
50
80
  * Updated device profiles for iPhone 7 (iOS 11) with Mobile Chrome browser and iPad (iOS 10) with Mobile Chrome browser.
51
81
 
52
- ###Version 3.0.0
82
+ ## [3.0.0] - 2018-04-25
53
83
 
84
+ ### Added
54
85
  * The TestCentricity™ Web gem now works with Selenium-WebDriver version 3.11 and **geckodriver** version 0.20.1 (or later) to support testing of the latest versions
55
86
  of Firefox web browsers.
56
87
  * Support for testing on locally hosted "headless" Chrome or Firefox browsers has been added.
57
88
  * Support for headless browser testing using Poltergeist and PhantomJS has been removed.
58
89
  * Support for Legacy FirefoxDriver (used in Firefox versions < 48) has been added.
90
+
91
+ ### Fixed
59
92
  * `TestCentricity::WebDriverConnect.set_webdriver_path` method now sets the path to the appropriate **geckodriver** file for OS X or Windows when testing on
60
93
  locally hosted Firefox browsers.
61
94
 
62
- ###Version 2.4.3
95
+ ## [2.4.3] - 2018-04-11
63
96
 
97
+ ### Changed
64
98
  * Updated device profiles for iPhone 7 (iOS 11) with Mobile Firefox browser and iPad (iOS 10) with Mobile Firefox browser.
65
99
 
66
- ###Version 2.4.1
100
+ ## [2.4.1] - 2018-03-27
67
101
 
102
+ ### Added
68
103
  * Added device profiles for iPad (iOS 10) with MS Edge browser.
69
104
 
70
- ###Version 2.4.0
105
+ ## [2.4.0] - 2018-03-25
71
106
 
107
+ ### Changed
72
108
  * Updated `TestCentricity::WebDriverConnect.initialize_web_driver` method to read the `APP_FULL_RESET`, `APP_NO_RESET`, and `NEW_COMMAND_TIMEOUT` Environment
73
109
  Variables and set the corresponding `fullReset`, `noReset`, and `newCommandTimeout` Appium capabilities for iOS and Android physical devices and simulators.
74
110
  Also reads the `WDA_LOCAL_PORT` Environment Variable and sets the `wdaLocalPort` Appium capability for iOS physical devices only.
75
111
 
76
- ###Version 2.3.19
112
+ ## [2.3.19] - 2018-03-14
77
113
 
114
+ ### Fixed
78
115
  * Fixed device profile for `android_phone` - Generic Android Phone.
79
116
 
80
- ###Version 2.3.18
117
+ ## [2.3.18] - 2018-03-11
81
118
 
119
+ ### Changed
82
120
  * Updated `SelectList.define_list_elements` method to accept value for `:list_trigger` element.
83
121
  * Updated `SelectList.choose_option` to respect `:list_item` value and to click on `:list_trigger` element, if one is specified.
84
122
  * Updated `PageSection` and `PageObject` UI element object declaration methods to no longer use `class_eval` pattern.
85
123
  * Updated device profiles for iPhone 7 (iOS 10) with Chrome browser and iPad (iOS 10) with Chrome browser.
124
+
125
+ ### Fixed
86
126
  * Fixed `SelectList.choose_option` to also accept `:text`, `:value`, and `:index` option hashes across all types of select list objects.
87
127
 
88
- ###Version 2.3.17
128
+ ## [2.3.17] - 2018-03-08
89
129
 
130
+ ### Added
90
131
  * Added `List.wait_until_item_count_is` and `List.wait_until_item_count_changes` methods.
132
+
133
+ ### Changed
91
134
  * `UIElement.wait_until_value_is` and `List.wait_until_item_count_is` methods now accept comparison hash.
92
135
 
93
- ###Version 2.3.16
136
+ ## [2.3.16] - 2018-03-04
94
137
 
138
+ ### Added
95
139
  * Added `PageSection.double_click`, `PageObject.right_click`, and `PageObject.send_keys` methods.
96
140
 
97
- ###Version 2.3.15
141
+ ## [2.3.15] - 2018-03-02
98
142
 
143
+ ### Added
99
144
  * Added `PageObject.wait_until_exists` and `PageObject.wait_until_gone` methods.
145
+
146
+ ### Fixed
100
147
  * Fixed bug in `UIElement.get_object_type` method that could result in a `NoMethodError obj not defined` error.
101
148
  * Fixed bug in `PageObject.verify_ui_states` and `PageSection.verify_ui_states` methods that failed to enqueue errors when UI elements could not be found.
102
149
 
103
- ###Version 2.3.14
150
+ ## [2.3.14] - 2018-02-28
104
151
 
152
+ ### Changed
105
153
  * Updated device profiles for iPhone 7 (iOS 10) with MS Edge browser.
106
154
 
107
- ###Version 2.3.13
155
+ ## [2.3.13] - 2018-02-09
108
156
 
157
+ ### Added
109
158
  * Added `AppiumServer.start`, `AppiumServer.running?`, and `AppiumServer.stop` methods for starting and stopping the Appium Server prior to executing tests on
110
159
  iOS physical devices or simulators, or Android virtual device emulators.
111
160
 
112
- ###Version 2.3.12
161
+ ## [2.3.12] - 2018-02-07
113
162
 
163
+ ### Added
114
164
  * Added `Environ.is_simulator?` and `Environ.is_web?` methods.
115
165
 
116
- ###Version 2.3.11
166
+ ## [2.3.11] - 2018-02-02
117
167
 
168
+ ### Added
118
169
  * Added support for running tests in Mobile Safari browser on physical iOS devices.
170
+
171
+ ### Changed
119
172
  * Updated device profiles for iPhone 7 (iOS 10) with Mobile Firefox browser and iPad (iOS 10) with Mobile Firefox browser.
120
173
 
121
- ###Version 2.3.10
174
+ ## [2.3.10] - 2018-01-31
122
175
 
176
+ ### Added
123
177
  * Added support for running tests in mobile Chrome or Android browsers on Android Studio virtual device emulators.
124
178
  * Added `displayed?`, `get_all_items_count`, and `get_all_list_items` methods to `PageSection` class.
125
179
  * Added `get_all_items_count`, and `get_all_list_items` methods to `List` class.
126
180
 
127
- ###Version 2.3.9
181
+ ## [2.3.9] - 2018-01-27
128
182
 
183
+ ### Changed
129
184
  * Updated `PageObject.populate_data_fields` and `PageSection.populate_data_fields` methods to accept optional `wait_time` parameter.
130
185
  * Updated device profiles for iPhone 7 (iOS 10) with MS Edge browser, iPhone 7 (iOS 10) with Chrome browser, and iPhone 7 (iOS 10) with Firefox browser.
131
186
  * Updated device profiles for iPad (iOS 10) with Chrome browser and iPad (iOS 10) with Firefox browser.
132
187
 
133
- ###Version 2.3.8
188
+ ## [2.3.8] - 2018-01-23
134
189
 
190
+ ### Fixed
135
191
  * Fixed locator resolution for **Indexed PageSection Objects**.
136
192
 
137
- ###Version 2.3.7
193
+ ## [2.3.7] - 2018-01-18
138
194
 
195
+ ### Added
139
196
  * Added `width`, `height`, `x`, `y`, and `displayed?` methods to `UIElement` class.
140
197
 
141
- ###Version 2.3.6
198
+ ## [2.3.6] - 2017-12-21
142
199
 
200
+ ### Added
143
201
  * Added `TextField.clear` method for deleting the contents of text fields. This method should trigger the `onchange` event for the associated text field.
202
+
203
+ ### Changed
144
204
  * `TextField.clear` method now works with most `number` type fields.
145
205
 
146
- ###Version 2.3.5
206
+ ## [2.3.5] - 2017-12-19
147
207
 
208
+ ### Changed
148
209
  * Updated `PageObject.populate_data_fields` and `PageSection.populate_data_fields` methods to be compatible with Redactor editor fields.
149
210
  * Updated device profiles for iPhone 7 (iOS 10) with MS Edge browser, iPhone 7 (iOS 10) with Chrome browser, and iPhone 7 (iOS 10) with Firefox browser.
150
211
 
151
- ###Version 2.3.4
212
+ ## [2.3.4] - 2017-12-12
152
213
 
214
+ ### Fixed
153
215
  * Fixed bug in `PageObject.populate_data_fields` and `PageSection.populate_data_fields` methods that prevented deletion of data in number type textfields
154
216
  and textarea controls.
155
217
 
156
- ###Version 2.3.3
218
+ ## [2.3.3] - 2017-12-09
157
219
 
220
+ ### Added
158
221
  * Added device profile for iPhone 7 (iOS 10) with MS Edge browser.
222
+
223
+ ### Fixed
159
224
  * Corrected device profiles for iPad (iOS 10) with Mobile Chrome browser and iPad (iOS 10) with Mobile Firefox browser.
160
225
 
161
- ###Version 2.3.1
226
+ ## [2.3.1] - 2017-12-07
162
227
 
228
+ ### Added
163
229
  * When testing using remotely hosted browsers on the BrowserStack service, the BrowserStack Local instance is automatically started if the `TUNNELING`
164
230
  Environment Variable is set to `true`. `Environ.tunneling` will be set to true if the BrowserStack Local instance is succesfully started.
165
231
  * Added `TestCentricity::WebDriverConnect.close_tunnel` method to close BrowserStack Local instance when Local testing is enabled. Refer to the
166
232
  **Remotely hosted desktop and mobile web browsers** section for information on usage.
167
233
 
168
- ###Version 2.2.1
234
+ ## [2.2.1] - 2017-11-29
169
235
 
236
+ ### Changed
170
237
  * `SelectList.choose_option` method now accepts index values for Chosen list objects.
171
238
 
172
- ###Version 2.2.0
239
+ ## [2.2.0] - 2017-11-29
173
240
 
241
+ ### Changed
174
242
  * CSS selectors or XPath expressions may be used as locators for all types of **UI Elements**, including tables.
175
243
 
176
- ###Version 2.1.10
244
+ ## [2.1.10] - 2017-11-14
177
245
 
246
+ ### Added
178
247
  * Added device profiles for iPhone 7 (iOS 10) with Mobile Firefox browser and iPad (iOS 10) with Mobile Firefox browser.
179
248
 
180
- ###Version 2.1.9
249
+ ## [2.1.9] - 2017-11-13
181
250
 
251
+ ### Fixed
182
252
  * Fixed bug in `SelectList.choose_option`, `SelectList.get_options`, `SelectList.get_option_count`, and `SelectList.get_selected_option` methods which
183
253
  did not recognize grouped option in Chosen list objects.
184
254
 
185
- ###Version 2.1.8
255
+ ## [2.1.8] - 2017-11-09
186
256
 
257
+ ### Added
187
258
  * Added `PageSection.verify_list_items` method for **Indexed PageSection Objects**.
188
259
 
189
- ###Version 2.1.7
260
+ ## [2.1.7] - 2017-11-07
190
261
 
262
+ ### Changed
191
263
  * Updated `PageObject.populate_data_fields` and `PageSection.populate_data_fields` methods to use backspace characters to delete contents of a textfield
192
264
  instead of using `clear`, which was preventing `onchange` JavaScript events from being triggered in some browsers.
193
265
 
194
- ###Version 2.1.6
266
+ ## [2.1.6] - 2017-10-31
195
267
 
268
+ ### Fixed
196
269
  * Fixed bug in `TestCentricity::WebDriverConnect.set_webdriver_path` method that was failing to set the path to the appropriate **chromedriver** file for OS X
197
270
  and Windows.
198
271
 
199
- ###Version 2.1.5
272
+ ## [2.1.5] - 2017-10-28
200
273
 
274
+ ### Added
201
275
  * Added `get_min`, `get_max`, and `get_step` methods to `TextField` class.
202
276
  * Updated `PageObject.verify_ui_states` and `PageSection.verify_ui_states` methods to support verification of `min`, `max`, and `step` attributes
203
277
  for textfields.
278
+
279
+ ### Fixed
204
280
  * Fixed Chrome and Firefox support for setting browser language via the `LOCALE` Environment Variable. This capability now works for emulated mobile
205
281
  browsers hosted in a local instance of Chrome or Firefox.
206
282
 
207
- ###Version 2.1.4
283
+ ## [2.1.4] - 2017-10-24
208
284
 
285
+ ### Added
209
286
  * Added suppression of the Info Bar that displays "Chrome is being controlled by automated test software" on locally hosted instances of the Chrome browser.
210
287
 
211
288
 
212
- ###Version 2.1.3
289
+ ## [2.1.3] - 2017-10-17
213
290
 
291
+ ### Added
214
292
  * Added support for "tiling" or cascading multiple browser windows when the `BROWSER_TILE` and `PARALLEL` Environment Variables are set to true. For each
215
293
  concurrent parallel thread being executed, the position of each browser will be offset by 100 pixels right and 100 pixels down. For parallel test execution,
216
294
  use the [parallel_tests gem](https://rubygems.org/gems/parallel_tests) to decrease overall test execution time.
217
295
 
218
- ###Version 2.1.2
296
+ ## [2.1.2] - 2017-10-01
219
297
 
298
+ ### Added
220
299
  * Added device profiles for Microsoft Lumia 950, Blackberry Leap, Blackberry Passport, and Kindle Fire HD 10
221
300
  * Added ability to set browser language support via the `LOCALE` Environment Variable for local instances of Chrome browsers
222
301
 
223
- ###Version 2.1.0
302
+ ## [2.1.0] - 2017-09-23
224
303
 
304
+ ### Added
225
305
  * Added device profiles for iPhone 8, iPhone 8 Plus, iPhone X devices running iOS 11
226
306
  * Added device profile for iPad Pro 10.5" with iOS 11
307
+
308
+ ### Changed
227
309
  * Updated iPhone 7 and iPhone 7 Plus profiles to iOS 10
228
310
  * Updated Google Pixel and Google Pixel XL profiles to Android 8
229
311
  * Added device profiles for iPhone 7 (iOS 10) with Mobile Chrome browser and iPad (iOS 10) with Mobile Chrome browser
230
312
  * The `TestCentricity::WebDriverConnect.initialize_web_driver` method now sets the `Environ` object to the correct device connection states for local and
231
313
  cloud hosted browsers.
314
+
315
+ ### Fixed
232
316
  * The `TestCentricity::WebDriverConnect.initialize_web_driver` method no longer calls `initialize_browser_size` when running tests against cloud hosted
233
317
  mobile web browser, which was resulting in Appium throwing exceptions for unsupported method calls.
234
318
  * The `TestCentricity::WebDriverConnect.set_webdriver_path` method now correctly sets the path for Chrome webDrivers when the `HOST_BROWSER` Environment
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/Gemfile.lock ADDED
@@ -0,0 +1,93 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ testcentricity_web (3.0.10)
5
+ appium_lib
6
+ browserstack-local
7
+ capybara (>= 3.1, < 4)
8
+ childprocess (~> 0.5)
9
+ chronic (= 0.10.2)
10
+ faker
11
+ i18n
12
+ os (~> 1.0)
13
+ selenium-webdriver (>= 3.11.0, < 4.0)
14
+ spreadsheet (= 1.1.7)
15
+ test-unit
16
+ webdrivers (~> 3.3)
17
+
18
+ GEM
19
+ remote: https://rubygems.org/
20
+ specs:
21
+ addressable (2.5.2)
22
+ public_suffix (>= 2.0.2, < 4.0)
23
+ appium_lib (9.14.2)
24
+ appium_lib_core (~> 1.7.2)
25
+ nokogiri (~> 1.8, >= 1.8.1)
26
+ tomlrb (~> 1.1)
27
+ appium_lib_core (1.7.2)
28
+ faye-websocket (~> 0.10.0)
29
+ selenium-webdriver (~> 3.5)
30
+ browserstack-local (1.3.0)
31
+ capybara (3.3.0)
32
+ addressable
33
+ mini_mime (>= 0.1.3)
34
+ nokogiri (~> 1.8)
35
+ rack (>= 1.6.0)
36
+ rack-test (>= 0.6.3)
37
+ xpath (~> 3.1)
38
+ childprocess (0.9.0)
39
+ ffi (~> 1.0, >= 1.0.11)
40
+ chronic (0.10.2)
41
+ concurrent-ruby (1.0.5)
42
+ eventmachine (1.2.7)
43
+ faker (1.9.1)
44
+ i18n (>= 0.7)
45
+ faye-websocket (0.10.7)
46
+ eventmachine (>= 0.12.0)
47
+ websocket-driver (>= 0.5.1)
48
+ ffi (1.9.25)
49
+ i18n (1.0.1)
50
+ concurrent-ruby (~> 1.0)
51
+ mini_mime (1.0.0)
52
+ mini_portile2 (2.3.0)
53
+ nokogiri (1.8.3)
54
+ mini_portile2 (~> 2.3.0)
55
+ os (1.0.0)
56
+ power_assert (1.1.3)
57
+ public_suffix (3.0.2)
58
+ rack (2.0.5)
59
+ rack-test (1.0.0)
60
+ rack (>= 1.0, < 3)
61
+ rake (11.1.2)
62
+ redcarpet (3.3.4)
63
+ ruby-ole (1.2.12.1)
64
+ rubyzip (1.2.1)
65
+ selenium-webdriver (3.12.0)
66
+ childprocess (~> 0.5)
67
+ rubyzip (~> 1.2)
68
+ spreadsheet (1.1.7)
69
+ ruby-ole (>= 1.0)
70
+ test-unit (3.2.8)
71
+ power_assert
72
+ tomlrb (1.2.7)
73
+ webdrivers (3.3.2)
74
+ nokogiri (~> 1.6)
75
+ rubyzip (~> 1.0)
76
+ selenium-webdriver (~> 3.0)
77
+ websocket-driver (0.7.0)
78
+ websocket-extensions (>= 0.1.0)
79
+ websocket-extensions (0.1.3)
80
+ xpath (3.1.0)
81
+ nokogiri (~> 1.8)
82
+
83
+ PLATFORMS
84
+ ruby
85
+
86
+ DEPENDENCIES
87
+ bundler (~> 1.5)
88
+ rake
89
+ redcarpet
90
+ testcentricity_web!
91
+
92
+ BUNDLED WITH
93
+ 1.16.2