testcentricity_web 0.6.4 → 0.6.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +99 -103
- data/lib/testcentricity_web/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 58bd9d1679b6f663c4899846aec59b4872961837
|
4
|
+
data.tar.gz: 9cd449d7a5aa687253b498b9def2a3331d97e8ee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7ce854490297c36cff5afc7d2feb9de2b034d2916ebabbc9bf5cb23b552f0623aa37ed25b74dd50dfb3e912931a95f0285d3954ac6cfec20811afddccfd972a8
|
7
|
+
data.tar.gz: 356e35f4a42b49cefcc26d364d16ebb1f4b682caee16a6b218a8f94b47106b3d8defa6b9bd8717a3d88f62a48ff2051ef4c7ea1d79256db4e6720cb533c87781
|
data/README.md
CHANGED
@@ -1,13 +1,9 @@
|
|
1
1
|
# TestCentricityWeb
|
2
2
|
|
3
3
|
The TestCentricity™ core generic framework for desktop and mobile web site testing implements a Page Object and Data Object Model DSL for
|
4
|
-
use with Cucumber, Capybara, and Selenium-Webdriver.
|
5
|
-
|
6
|
-
|
7
|
-
- locally hosted desktop browsers (Firefox, Chrome, Safari, IE, or Edge)
|
8
|
-
- locally hosted emulated iOS and Android mobile browsers (using Firefox)
|
9
|
-
- a "headless" browser (using Poltergeist and PhantomJS)
|
10
|
-
- cloud hosted desktop or mobile web browsers using the BrowserStack, Sauce Labs, CrossBrowserTesting, or TestingBot services.
|
4
|
+
use with Cucumber, Capybara, and Selenium-Webdriver. It supports testing against locally hosted desktop browsers (Firefox, Chrome, Safari,
|
5
|
+
IE, or Edge), locally hosted emulated iOS and Android mobile browsers (using Firefox), a "headless" browser (using Poltergeist and PhantomJS),
|
6
|
+
or on cloud hosted desktop or mobile web browsers using the BrowserStack, Sauce Labs, CrossBrowserTesting, or TestingBot services.
|
11
7
|
|
12
8
|
|
13
9
|
## Installation
|
@@ -70,7 +66,7 @@ to update the affected feature file, scenarios, or step definitions.
|
|
70
66
|
|
71
67
|
### Defining a Page Object
|
72
68
|
|
73
|
-
Your **Page Object** class definitions should be contained within individual
|
69
|
+
Your **Page Object** class definitions should be contained within individual **`.rb`** files in the **`features/support/pages`** folder of your
|
74
70
|
test automation project. You define new **Page Objects** as shown below:
|
75
71
|
|
76
72
|
class LoginPage < TestCentricity::PageObject
|
@@ -86,17 +82,17 @@ test automation project. You define new **Page Objects** as shown below:
|
|
86
82
|
Web pages typically have names and URLs associated with them. Web pages also typically have a unique object or attribute that, when present,
|
87
83
|
indicates that the page's contents have fully loaded.
|
88
84
|
|
89
|
-
The
|
85
|
+
The **`page_name`** trait is registered with the **PageManager** object, which includes a **`find_page`** method that takes a page name as a
|
90
86
|
parameter and returns an instance of the associated **Page Object**.
|
91
87
|
|
92
|
-
A
|
93
|
-
when calling the
|
94
|
-
be appended to the base URL specified in
|
88
|
+
A **`page_url`** trait should be defined if a page can be directly loaded using a URL. If you set Capybara's **`app_host`**, or specify a base URL
|
89
|
+
when calling the **`WebDriverConnect.initialize_web_driver`** method, then your **`page_url`** trait can be the relative URL slug that will
|
90
|
+
be appended to the base URL specified in **`app_host`**. Specifying a **`page_url`** trait is optional, as not all web pages can be directly loaded
|
95
91
|
via a URL.
|
96
92
|
|
97
|
-
A
|
98
|
-
|
99
|
-
for the
|
93
|
+
A **`page_locator`** trait is defined if a page has a unique object or attribute that exists once the page's contents have fully loaded. The
|
94
|
+
**`page_locator`** trait is a CSS or Xpath expression that uniquely identifies the object or attribute. The **`verify_page_exists`** method waits
|
95
|
+
for the **`page_locator`** trait to exist.
|
100
96
|
|
101
97
|
You define your page's **Traits** as shown below:
|
102
98
|
|
@@ -187,7 +183,7 @@ A **PageSection Object** may contain other **PageSection Objects**.
|
|
187
183
|
|
188
184
|
### Defining a PageSection Object
|
189
185
|
|
190
|
-
Your **PageSection** class definitions should be contained within individual
|
186
|
+
Your **PageSection** class definitions should be contained within individual **`.rb`** files in the **`features/support/sections`** folder of
|
191
187
|
your test automation project. You define new **PageSection Objects** as shown below:
|
192
188
|
|
193
189
|
class SearchForm < TestCentricity::PageSection
|
@@ -196,7 +192,7 @@ your test automation project. You define new **PageSection Objects** as shown be
|
|
196
192
|
|
197
193
|
### Adding Traits to a PageSection Object
|
198
194
|
|
199
|
-
A **PageSection Object** typically has a root node object that encapsulates a collection of **UI Elements**. The
|
195
|
+
A **PageSection Object** typically has a root node object that encapsulates a collection of **UI Elements**. The **`section_locator`** trait
|
200
196
|
specifies the CSS or Xpath expression that uniquely identifies that root node object.
|
201
197
|
|
202
198
|
You define your page section's **Traits** as shown below:
|
@@ -280,8 +276,8 @@ One common implementation is shown below:
|
|
280
276
|
|
281
277
|
World(WorldPages)
|
282
278
|
|
283
|
-
The
|
284
|
-
|
279
|
+
The **`WorldPages`** module above can be defined in your **`env.rb`** file, or you can define it in a separate **`world_pages.rb`** file in the
|
280
|
+
**`features/support`** folder.
|
285
281
|
|
286
282
|
While this approach is effective for small web applications with only a few pages (and hence few **Page Objects**), it quickly becomes
|
287
283
|
cumbersome to manage if your web application has dozens of **Page Objects** that need to be instantiated and managed.
|
@@ -289,7 +285,7 @@ cumbersome to manage if your web application has dozens of **Page Objects** that
|
|
289
285
|
### Using the PageManager
|
290
286
|
|
291
287
|
The **PageManager** class provides methods for supporting the instantiation and management of **Page Objects**. In the code example below,
|
292
|
-
the
|
288
|
+
the **`page_objects`** method contains a hash table of your **Page Object** instances and their associated **Page Object** class names
|
293
289
|
to be instantiated by **PageManager**:
|
294
290
|
|
295
291
|
module WorldPages
|
@@ -311,9 +307,9 @@ to be instantiated by **PageManager**:
|
|
311
307
|
|
312
308
|
World(WorldPages)
|
313
309
|
|
314
|
-
The
|
310
|
+
The **`WorldPages`** module above should be defined in the **`world_pages.rb`** file in the **`features/support`** folder.
|
315
311
|
|
316
|
-
Include the code below in your
|
312
|
+
Include the code below in your **`env.rb`** file to ensure that your **Page Objects** are instantiated before your Cucumber scenarios are
|
317
313
|
executed:
|
318
314
|
|
319
315
|
include WorldPages
|
@@ -323,54 +319,54 @@ executed:
|
|
323
319
|
|
324
320
|
## Connecting to a Web Browser
|
325
321
|
|
326
|
-
The
|
327
|
-
connection with a target web browser, and sets the base host URL of the web site you are running your tests against
|
322
|
+
The **`WebDriverConnect.initialize_web_driver`** method configures the appropriate selenium-webdriver capabilities required to establish a
|
323
|
+
connection with a target web browser, and sets the base host URL of the web site you are running your tests against.
|
328
324
|
|
329
|
-
The
|
330
|
-
Variables**are used to specify the target local or remote web browser, and the various webdriver capability parameters required to configure
|
325
|
+
The **`WebDriverConnect.initialize_web_driver`** method accepts a single optional parameter - the base host URL. Cucumber **Environment
|
326
|
+
Variables** are used to specify the target local or remote web browser, and the various webdriver capability parameters required to configure
|
331
327
|
the connection.
|
332
328
|
|
333
329
|
|
334
330
|
### Locally hosted desktop web browser
|
335
331
|
|
336
|
-
For locally hosted desktop web browsers, the
|
332
|
+
For locally hosted desktop web browsers, the **`WEB_BROWSER`** Environment Variable must be set to one of the values from the table below:
|
337
333
|
|
338
|
-
|
334
|
+
**`WEB_BROWSER`** | Desktop Platform
|
339
335
|
--------------- | ----------------
|
340
|
-
firefox | OS X or Windows
|
341
|
-
chrome | OS X or Windows
|
342
|
-
safari | OS X only
|
343
|
-
ie | Windows only
|
344
|
-
edge | Windows 10 only
|
345
|
-
poltergeist | OS X or Windows
|
336
|
+
`firefox` | OS X or Windows
|
337
|
+
`chrome` | OS X or Windows
|
338
|
+
`safari` | OS X only
|
339
|
+
`ie` | Windows only
|
340
|
+
`edge` | Windows 10 only
|
341
|
+
`poltergeist` | OS X or Windows
|
346
342
|
|
347
343
|
|
348
344
|
### Locally hosted emulated mobile web browser
|
349
345
|
|
350
346
|
You can also run your tests against emulated mobile device browsers within a locally hosted instance of the Firefox desktop browser. You may
|
351
|
-
even specify the emulated device's screen orientation. For locally hosted emulated mobile web browsers, the
|
347
|
+
even specify the emulated device's screen orientation. For locally hosted emulated mobile web browsers, the **`WEB_BROWSER`** Environment Variable
|
352
348
|
must be set to one of the values from the table below:
|
353
349
|
|
354
|
-
|
350
|
+
**`WEB_BROWSER`** |
|
355
351
|
--------------- |
|
356
|
-
ipad |
|
357
|
-
ipad_pro |
|
358
|
-
iphone |
|
359
|
-
iphone4 |
|
360
|
-
iphone5 |
|
361
|
-
iphone6 |
|
362
|
-
iphone6_plus |
|
363
|
-
android_phone |
|
364
|
-
android_tablet |
|
352
|
+
`ipad` |
|
353
|
+
`ipad_pro` |
|
354
|
+
`iphone` |
|
355
|
+
`iphone4` |
|
356
|
+
`iphone5` |
|
357
|
+
`iphone6` |
|
358
|
+
`iphone6_plus` |
|
359
|
+
`android_phone` |
|
360
|
+
`android_tablet` |
|
365
361
|
|
366
|
-
To specify the emulated device's screen orientation, you set the
|
362
|
+
To specify the emulated device's screen orientation, you set the **`ORIENTATION`** Environment Variable to either **`portrait`** or **`landscape`**.
|
367
363
|
|
368
364
|
|
369
365
|
### Remotely hosted desktop and mobile web browsers
|
370
366
|
|
371
367
|
You can run your automated tests against remotely hosted desktop and mobile web browsers using the BrowserStack, CrossBrowserTesting,
|
372
368
|
Sauce Labs, or TestingBot services. If your tests are running against a web site hosted on your local computer (localhost), or on a
|
373
|
-
staging server inside your LAN, you must set the
|
369
|
+
staging server inside your LAN, you must set the **`TUNNELING`** Environment Variable to **`true`**.
|
374
370
|
|
375
371
|
|
376
372
|
#### Remote desktop browsers on the BrowserStack service
|
@@ -380,15 +376,15 @@ the table below. Refer to the [Browserstack-specific capabilities chart page](ht
|
|
380
376
|
|
381
377
|
**Environment Variable** | Description
|
382
378
|
--------------- | ----------------
|
383
|
-
WEB_BROWSER | Must be set to
|
384
|
-
BS_USERNAME | Must be set to your BrowserStack account user name
|
385
|
-
BS_AUTHKEY | Must be set to your BrowserStack account access key
|
386
|
-
BS_OS | Must be set to
|
387
|
-
BS_OS_VERSION | Refer to
|
388
|
-
BS_BROWSER | Refer to
|
389
|
-
BS_VERSION | Refer to
|
390
|
-
TUNNELING | Must be
|
391
|
-
RESOLUTION | Refer to supported screen
|
379
|
+
`WEB_BROWSER` | Must be set to **`browserstack`**
|
380
|
+
`BS_USERNAME` | Must be set to your BrowserStack account user name
|
381
|
+
`BS_AUTHKEY` | Must be set to your BrowserStack account access key
|
382
|
+
`BS_OS` | Must be set to **`OS X`** or **`Windows`**
|
383
|
+
`BS_OS_VERSION` | Refer to **`os_version`** capability in chart
|
384
|
+
`BS_BROWSER` | Refer to **`browser`** capability in chart
|
385
|
+
`BS_VERSION` | Refer to **`browser_version`** capability in chart
|
386
|
+
`TUNNELING` | Must be **`true`** if you are testing against internal/local servers
|
387
|
+
`RESOLUTION` | Refer to supported screen **`resolution`** capability in chart
|
392
388
|
|
393
389
|
|
394
390
|
#### Remote mobile browsers on the BrowserStack service
|
@@ -398,14 +394,14 @@ the table below. Refer to the [Browserstack-specific capabilities chart page](ht
|
|
398
394
|
|
399
395
|
**Environment Variable** | Description
|
400
396
|
--------------- | ----------------
|
401
|
-
WEB_BROWSER | Must be set to
|
402
|
-
BS_USERNAME | Must be set to your BrowserStack account user name
|
403
|
-
BS_AUTHKEY | Must be set to your BrowserStack account access key
|
404
|
-
BS_BROWSER | Must be set to
|
405
|
-
BS_PLATFORM | Must be set to
|
406
|
-
BS_DEVICE | Refer to
|
407
|
-
TUNNELING | Must be
|
408
|
-
ORIENTATION | set to
|
397
|
+
`WEB_BROWSER` | Must be set to **`browserstack`**
|
398
|
+
`BS_USERNAME` | Must be set to your BrowserStack account user name
|
399
|
+
`BS_AUTHKEY` | Must be set to your BrowserStack account access key
|
400
|
+
`BS_BROWSER` | Must be set to **`iPhone`**, **`iPad`**, or **`android`**
|
401
|
+
`BS_PLATFORM` | Must be set to **`MAC`** (for iOS) or **`ANDROID`**
|
402
|
+
`BS_DEVICE` | Refer to **`device`** capability in chart
|
403
|
+
`TUNNELING` | Must be **`true`** if you are testing against internal/local servers
|
404
|
+
`ORIENTATION` | set to **`portrait`** or **`landscape`**
|
409
405
|
|
410
406
|
|
411
407
|
|
@@ -416,12 +412,12 @@ the table below. Use the Configuration Wizard on the [Start a Selenium Test page
|
|
416
412
|
|
417
413
|
**Environment Variable** | Description
|
418
414
|
--------------- | ----------------
|
419
|
-
WEB_BROWSER | Must be set to
|
420
|
-
CB_USERNAME | Must be set to your CrossBrowserTesting account user name or email address
|
421
|
-
CB_AUTHKEY | Must be set to your CrossBrowserTesting account access key
|
422
|
-
CB_OS | Refer to
|
423
|
-
CB_BROWSER | Refer to
|
424
|
-
RESOLUTION | Refer to supported
|
415
|
+
`WEB_BROWSER` | Must be set to **`crossbrowser`**
|
416
|
+
`CB_USERNAME` | Must be set to your CrossBrowserTesting account user name or email address
|
417
|
+
`CB_AUTHKEY` | Must be set to your CrossBrowserTesting account access key
|
418
|
+
`CB_OS` | Refer to **`os_api_name`** capability in the sample script of the Wizard
|
419
|
+
`CB_BROWSER` | Refer to **`browser_api_name`** capability in the sample script of the Wizard
|
420
|
+
`RESOLUTION` | Refer to supported **`screen_resolution`** capability in the sample script of the Wizard
|
425
421
|
|
426
422
|
|
427
423
|
#### Remote mobile browsers on the CrossBrowserTesting service
|
@@ -431,12 +427,12 @@ the table below. Use the Configuration Wizard on the [Start a Selenium Test page
|
|
431
427
|
|
432
428
|
**Environment Variable** | Description
|
433
429
|
--------------- | ----------------
|
434
|
-
WEB_BROWSER | Must be set to
|
435
|
-
CB_USERNAME | Must be set to your CrossBrowserTesting account user name or email address
|
436
|
-
CB_AUTHKEY | Must be set to your CrossBrowserTesting account access key
|
437
|
-
CB_PLATFORM | Refer to
|
438
|
-
CB_BROWSER | Refer to
|
439
|
-
RESOLUTION | Refer to supported
|
430
|
+
`WEB_BROWSER` | Must be set to **`crossbrowser`**
|
431
|
+
`CB_USERNAME` | Must be set to your CrossBrowserTesting account user name or email address
|
432
|
+
`CB_AUTHKEY` | Must be set to your CrossBrowserTesting account access key
|
433
|
+
`CB_PLATFORM` | Refer to **`os_api_name`** capability in the sample script of the Wizard
|
434
|
+
`CB_BROWSER` | Refer to **`browser_api_name`** capability in the sample script of the Wizard
|
435
|
+
`RESOLUTION` | Refer to supported **`screen_resolution`** capability in the sample script of the Wizard
|
440
436
|
|
441
437
|
|
442
438
|
|
@@ -447,13 +443,13 @@ the table below. Use the Selenium API on the [Platform Configurator page](https:
|
|
447
443
|
|
448
444
|
**Environment Variable** | Description
|
449
445
|
--------------- | ----------------
|
450
|
-
WEB_BROWSER | Must be set to
|
451
|
-
SL_USERNAME | Must be set to your Sauce Labs account user name or email address
|
452
|
-
SL_AUTHKEY | Must be set to your Sauce Labs account access key
|
453
|
-
SL_OS | Refer to
|
454
|
-
SL_BROWSER | Must be set to
|
455
|
-
SL_VERSION | Refer to
|
456
|
-
RESOLUTION | Refer to supported
|
446
|
+
`WEB_BROWSER` | Must be set to **`saucelabs`**
|
447
|
+
`SL_USERNAME` | Must be set to your Sauce Labs account user name or email address
|
448
|
+
`SL_AUTHKEY` | Must be set to your Sauce Labs account access key
|
449
|
+
`SL_OS` | Refer to **`platform`** capability in the Copy Code section of the Platform Configurator page
|
450
|
+
`SL_BROWSER` | Must be set to **`chrome`**, **`firefox`**, **`safari`**, **`internet explorer`**, or **`edge`**
|
451
|
+
`SL_VERSION` | Refer to **`version`** capability in the Copy Code section of the Platform Configurator page
|
452
|
+
`RESOLUTION` | Refer to supported **`screenResolution`** capability in the Copy Code section of the Platform Configurator page
|
457
453
|
|
458
454
|
|
459
455
|
#### Remote mobile browsers on the Sauce Labs service
|
@@ -463,15 +459,15 @@ the table below. Use the Selenium API on the [Platform Configurator page](https:
|
|
463
459
|
|
464
460
|
**Environment Variable** | Description
|
465
461
|
--------------- | ----------------
|
466
|
-
WEB_BROWSER | Must be set to
|
467
|
-
SL_USERNAME | Must be set to your Sauce Labs account user name or email address
|
468
|
-
SL_AUTHKEY | Must be set to your Sauce Labs account access key
|
469
|
-
SL_PLATFORM | Refer to
|
470
|
-
SL_BROWSER | Must be set to
|
471
|
-
SL_VERSION | Refer to
|
472
|
-
SL_DEVICE | Refer to
|
473
|
-
SL_DEVICE_TYPE | If displayed, refer to
|
474
|
-
ORIENTATION | Refer to
|
462
|
+
`WEB_BROWSER` | Must be set to **`saucelabs`**
|
463
|
+
`SL_USERNAME` | Must be set to your Sauce Labs account user name or email address
|
464
|
+
`SL_AUTHKEY` | Must be set to your Sauce Labs account access key
|
465
|
+
`SL_PLATFORM` | Refer to **`platform`** capability in the Copy Code section of the Platform Configurator page
|
466
|
+
`SL_BROWSER` | Must be set to **`iPhone`** or **`android`**
|
467
|
+
`SL_VERSION` | Refer to **`version`** capability in the Copy Code section of the Platform Configurator page
|
468
|
+
`SL_DEVICE` | Refer to **`deviceName`** capability in the Copy Code section of the Platform Configurator page
|
469
|
+
`SL_DEVICE_TYPE` | If displayed, refer to **`deviceType`** capability in the Copy Code section of the Platform Configurator page
|
470
|
+
`ORIENTATION` | Refer to **`deviceOrientation`** capability in the Copy Code section of the Platform Configurator page
|
475
471
|
|
476
472
|
|
477
473
|
#### Remote desktop browsers on the TestingBot service
|
@@ -481,24 +477,24 @@ the table below. Refer to the [TestingBot List of Available Browsers page](https
|
|
481
477
|
|
482
478
|
**Environment Variable** | Description
|
483
479
|
--------------- | ----------------
|
484
|
-
WEB_BROWSER | Must be set to
|
485
|
-
TB_USERNAME | Must be set to your TestingBot account user name
|
486
|
-
TB_AUTHKEY | Must be set to your TestingBot account access key
|
487
|
-
TB_OS | Refer to
|
488
|
-
TB_BROWSER | Refer to
|
489
|
-
TB_VERSION | Refer to
|
490
|
-
TUNNELING | Must be
|
491
|
-
RESOLUTION | Possible values: 800x600
|
480
|
+
`WEB_BROWSER` | Must be set to **`testingbot`**
|
481
|
+
`TB_USERNAME` | Must be set to your TestingBot account user name
|
482
|
+
`TB_AUTHKEY` | Must be set to your TestingBot account access key
|
483
|
+
`TB_OS` | Refer to **`platform`** capability in chart
|
484
|
+
`TB_BROWSER` | Refer to **`browserName`** capability in chart
|
485
|
+
`TB_VERSION` | Refer to **`version`** capability in chart
|
486
|
+
`TUNNELING` | Must be **`true`** if you are testing against internal/local servers
|
487
|
+
`RESOLUTION` | Possible values: **`800x600`**, **`1024x768`**, **`1280x960`**, **`1280x1024`**, **`1600x1200`**, **`1920x1200`**, **`2560x1440`**
|
492
488
|
|
493
489
|
|
494
490
|
### Using Browser specific Profiles in cucumber.yml
|
495
491
|
|
496
492
|
While you can set **Environment Variables** in the command line when invoking Cucumber, a preferred method of specifying and managing
|
497
493
|
target web browsers is to create browser specific **Profiles** that set the appropriate **Environment Variables** for each target browser
|
498
|
-
in your
|
494
|
+
in your **`cucumber.yml`** file.
|
499
495
|
|
500
496
|
Below is a list of Cucumber **Profiles** for supported locally and remotely hosted desktop and mobile web browsers (put these in in your
|
501
|
-
|
497
|
+
**`cucumber.yml`** file). Before you can use the BrowserStack, CrossBrowserTesting, Sauce Labs, or TestingBot services, you will need to
|
502
498
|
replace the placeholder text with your user account and authorization code for the cloud service(s) that you intend to connect with.
|
503
499
|
|
504
500
|
<% desktop = "--tags ~@wip --tags ~@failing --tags @desktop --require features" %>
|
@@ -768,7 +764,7 @@ replace the placeholder text with your user account and authorization code for t
|
|
768
764
|
tb_edge_win10: --profile tb_win10 TB_BROWSER="microsoftedge" TB_VERSION="13"
|
769
765
|
|
770
766
|
|
771
|
-
To specify a locally hosted target browser using a profile at runtime, you use the flag
|
767
|
+
To specify a locally hosted target browser using a profile at runtime, you use the flag **`--profile`** or **`-p`** followed by the profile name when
|
772
768
|
invoking Cucumber in the command line. For instance, the following command invokes Cucumber and specifies that a local instance of Chrome
|
773
769
|
will be used as the target web browser:
|
774
770
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: testcentricity_web
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.4
|
4
|
+
version: 0.6.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- A.J. Mrozinski
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-03-
|
11
|
+
date: 2016-03-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|