rainforest-cli 1.1.2 → 1.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/rainforest/cli/options.rb +3 -1
- data/lib/rainforest/cli/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 270928ed835e7dbed583470fff3b9c1986e5fe9a
|
4
|
+
data.tar.gz: fc60894506391ac1e329b5fb9961fddd920da227
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3e395a458362b9d1d2c55d3622655d0fc0f9576a713023f0c1b809c786eaa6bff3a9a606057b032d21db08d92017db542b621a59951d7bdea88ee21dd77afd80
|
7
|
+
data.tar.gz: a719238a0aa11bf602c1ff21ee56799380363d1145ce59f8fa38f1f2e18f8099a7defc02bf462a9745c2a2341c5774813bee4bfbf28c2becebedfeb1d2f73725
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
# Rainforest CLI Changelog
|
2
2
|
|
3
|
+
## 1.1.3 - 15th January 2016
|
4
|
+
- Customizable folder location for rainforest tests (fa4418738311cee8ca25cbb22a8ca52aa9cbd873, @ukd1)
|
5
|
+
- Update valid browser list, though this doesn't include custom browsers today (e6195c42f95cce72a17f49643bfe8c297baf8dd9, @ukd1)
|
6
|
+
|
3
7
|
## 1.1.2 - 15th January 2016
|
4
8
|
- Fixed specs (7c4af508d8cfa95363ee9976f1fa6f01f7c8d27b, @ukd1)
|
5
9
|
- Fixed a bug for users of Pivotal which caused tags to be incorrectly parsed (82966e7e739b590b396266d12d72605d6e19c12b, @chaselee)
|
@@ -14,7 +14,9 @@ module RainforestCli
|
|
14
14
|
:import_file_name, :import_name, :custom_url, :description, :folder,
|
15
15
|
:debug, :file_name
|
16
16
|
|
17
|
-
|
17
|
+
# Note, not all of these may be available to your account
|
18
|
+
# also, we may remove this in the future.
|
19
|
+
VALID_BROWSERS = %w{android_phone_landscape android_phone_portrait android_tablet_landscape android_tablet_portrait chrome chrome_1440_900 chrome_adblock chrome_ghostery chrome_guru chrome_ublock firefox firefox_1440_900 ie10 ie10_1440_900 ie11 ie11_1440_900 ie8 ie8_1440_900 ie9 ie9_1440_900 ios_iphone4s office2010 office2013 osx_chrome osx_firefox safari ubuntu_chrome ubuntu_firefox}.freeze
|
18
20
|
|
19
21
|
def initialize(args)
|
20
22
|
@args = args.dup
|