protractor-rails 0.0.15 → 0.0.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2c3d6b4886e0ca576f1195332c214993ed568444
4
- data.tar.gz: 560d125b9d0ed667121deccf3ee719bff2af2425
3
+ metadata.gz: 908352772a2480a055639bf93fd6a57af26eb974
4
+ data.tar.gz: 5c58d4e2a7aff71a576c248d595d219a6c6fc158
5
5
  SHA512:
6
- metadata.gz: c116accff0e0353324fd1b36034cc03c484eef8353325c3449f727ffc818d7d101e0d17cdd73d80e8fa919d63c612f55692b74bb3da66f3484cf4ed816329c3a
7
- data.tar.gz: e449e541643b972c8b5588ab1cee3da16dc98172f4d768ef522dd7169849cf32221ef6757c1e7fb3d56c05b2f8d49b594777090dad5d3a30e66f7f127ad6afeb
6
+ metadata.gz: 3ee6b93024ebe35506244b1803fd32458aa74f50f8a537c9b2ad2d79ebca5af160670c0deb33338c12fecc3cd77e06605a69470ec895d22468c73b194a7789d4
7
+ data.tar.gz: 732b8cdfd519428f3e17540c523210a525cfd69816194774b624c183157f3c3bf841fdbb9feee4ad57ee8edf61798a84762bb568ba6589a422db0584108bd7df
@@ -1,27 +1,27 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- protractor-rails (0.0.15)
4
+ protractor-rails (0.0.16)
5
5
  colorize
6
6
  railties
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- actionpack (4.2.0)
12
- actionview (= 4.2.0)
13
- activesupport (= 4.2.0)
14
- rack (~> 1.6.0)
11
+ actionpack (4.2.1)
12
+ actionview (= 4.2.1)
13
+ activesupport (= 4.2.1)
14
+ rack (~> 1.6)
15
15
  rack-test (~> 0.6.2)
16
16
  rails-dom-testing (~> 1.0, >= 1.0.5)
17
17
  rails-html-sanitizer (~> 1.0, >= 1.0.1)
18
- actionview (4.2.0)
19
- activesupport (= 4.2.0)
18
+ actionview (4.2.1)
19
+ activesupport (= 4.2.1)
20
20
  builder (~> 3.1)
21
21
  erubis (~> 2.7.0)
22
22
  rails-dom-testing (~> 1.0, >= 1.0.5)
23
23
  rails-html-sanitizer (~> 1.0, >= 1.0.1)
24
- activesupport (4.2.0)
24
+ activesupport (4.2.1)
25
25
  i18n (~> 0.7)
26
26
  json (~> 1.7, >= 1.7.7)
27
27
  minitest (~> 5.1)
@@ -32,26 +32,26 @@ GEM
32
32
  erubis (2.7.0)
33
33
  i18n (0.7.0)
34
34
  json (1.8.2)
35
- loofah (2.0.1)
35
+ loofah (2.0.2)
36
36
  nokogiri (>= 1.5.9)
37
37
  mini_portile (0.6.2)
38
- minitest (5.5.1)
38
+ minitest (5.7.0)
39
39
  nokogiri (1.6.6.2)
40
40
  mini_portile (~> 0.6.0)
41
- rack (1.6.0)
41
+ rack (1.6.1)
42
42
  rack-test (0.6.3)
43
43
  rack (>= 1.0)
44
44
  rails-deprecated_sanitizer (1.0.3)
45
45
  activesupport (>= 4.2.0.alpha)
46
- rails-dom-testing (1.0.5)
46
+ rails-dom-testing (1.0.6)
47
47
  activesupport (>= 4.2.0.beta, < 5.0)
48
48
  nokogiri (~> 1.6.0)
49
49
  rails-deprecated_sanitizer (>= 1.0.1)
50
- rails-html-sanitizer (1.0.1)
50
+ rails-html-sanitizer (1.0.2)
51
51
  loofah (~> 2.0)
52
- railties (4.2.0)
53
- actionpack (= 4.2.0)
54
- activesupport (= 4.2.0)
52
+ railties (4.2.1)
53
+ actionpack (= 4.2.1)
54
+ activesupport (= 4.2.1)
55
55
  rake (>= 0.8.7)
56
56
  thor (>= 0.18.1, < 2.0)
57
57
  rake (10.1.1)
@@ -67,3 +67,6 @@ DEPENDENCIES
67
67
  bundler (~> 1.5)
68
68
  protractor-rails!
69
69
  rake
70
+
71
+ BUNDLED WITH
72
+ 1.10.4
data/README.md CHANGED
@@ -64,6 +64,14 @@ If I have a directory set up for protractor specs in `spec/javascripts/protracto
64
64
  'browserName': 'chrome'
65
65
  },
66
66
 
67
+ // If you would like to test against multiple browsers, use the multiCapabilities
68
+ // configuration option instead.
69
+ multiCapabilities: [{
70
+ 'browserName': 'firefox'
71
+ }, {
72
+ 'browserName': 'chrome'
73
+ }],
74
+
67
75
  // Spec patterns are relative to the current working directly when protractor is called
68
76
  specs: ['protractor_specs/**/*.js '],
69
77
 
@@ -74,6 +82,13 @@ If I have a directory set up for protractor specs in `spec/javascripts/protracto
74
82
  showColors: true,
75
83
  defaultTimeoutInterval: 30000
76
84
  },
85
+
86
+ // Specify a version of Jasmine you wish to use. Default version is v1.3
87
+ // Jasmine v2 has many more built-in functions to help with testing,
88
+ // such as beforeAll and afterAll.
89
+ // Jasmine v2 documentation can be found here:
90
+ // http://jasmine.github.io/2.0/introduction.html
91
+ framework: 'jasmine2'
77
92
  };
78
93
 
79
94
  ```
@@ -1,5 +1,5 @@
1
1
  module Protractor
2
2
  module Rails
3
- VERSION = "0.0.15"
3
+ VERSION = "0.0.16"
4
4
  end
5
5
  end
@@ -26,7 +26,7 @@ namespace :protractor do
26
26
 
27
27
  task :install_webdriver do
28
28
  puts "Installing webdriver using protractor install manager...".green
29
- system "webdriver-manager update"
29
+ system "webdriver-manager update --standalone"
30
30
  end
31
31
 
32
32
  task :coffee_script_support do
@@ -103,7 +103,7 @@ namespace :protractor do |args|
103
103
 
104
104
  task :webdriver do
105
105
  write_log "Starting selenium server".green
106
- system "webdriver-manager start"
106
+ system "webdriver-manager start --standalone"
107
107
  end
108
108
 
109
109
  task :cleanup do
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: protractor-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.15
4
+ version: 0.0.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tyrone Wilson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-04-30 00:00:00.000000000 Z
11
+ date: 2015-06-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler