watirsplash 2.3.1 → 2.3.2
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.
- data/.rspec +2 -2
- data/Gemfile +1 -0
- data/Gemfile.lock +3 -0
- data/History.rdoc +8 -0
- data/lib/watirsplash/generators/templates/new_project/spec/{spec_helper.rb → spec_helper.rb.tt} +4 -1
- data/lib/watirsplash/version.rb +2 -2
- metadata +6 -6
data/.rspec
CHANGED
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -48,6 +48,8 @@ GEM
|
|
|
48
48
|
rubyzip
|
|
49
49
|
spork (0.9.0.rc9-x86-mingw32)
|
|
50
50
|
win32-process
|
|
51
|
+
spork-local_process (0.0.1)
|
|
52
|
+
spork (~> 0.9.0.rc9)
|
|
51
53
|
spruz (0.2.13)
|
|
52
54
|
subexec (0.0.4)
|
|
53
55
|
syntax (1.0.0)
|
|
@@ -86,6 +88,7 @@ DEPENDENCIES
|
|
|
86
88
|
firewatir (>= 1.9.4)
|
|
87
89
|
rspec (~> 2.6.0)
|
|
88
90
|
spork (~> 0.9.0.rc9)
|
|
91
|
+
spork-local_process
|
|
89
92
|
watir (= 2.0.2)
|
|
90
93
|
watir-webdriver (~> 0.3.3)
|
|
91
94
|
watirsplash!
|
data/History.rdoc
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
=== Version 2.3.2 / 2011-09-25
|
|
2
|
+
|
|
3
|
+
* add support for spork-local_process
|
|
4
|
+
|
|
5
|
+
=== Version 2.3.1 / 2011-09-11
|
|
6
|
+
|
|
7
|
+
* minor fix in WatirSplash::Page::Base
|
|
8
|
+
|
|
1
9
|
=== Version 2.3.0 / 2011-09-10
|
|
2
10
|
|
|
3
11
|
* add JavaScript errors detection for all supported frameworks & browsers - read more from wiki: https://github.com/jarmo/WatirSplash/wiki/Detecting-JavaScript-Errors
|
data/lib/watirsplash/generators/templates/new_project/spec/{spec_helper.rb → spec_helper.rb.tt}
RENAMED
|
@@ -2,6 +2,7 @@ require 'rubygems'
|
|
|
2
2
|
require "bundler"
|
|
3
3
|
Bundler.setup
|
|
4
4
|
require 'spork'
|
|
5
|
+
require 'spork/local_process'
|
|
5
6
|
|
|
6
7
|
Spork.prefork do
|
|
7
8
|
# Loading more in this block will cause your tests to run faster. However,
|
|
@@ -29,7 +30,9 @@ end
|
|
|
29
30
|
|
|
30
31
|
Spork.each_run do
|
|
31
32
|
# This code will be run each time you run your specs.
|
|
32
|
-
|
|
33
|
+
load_all Dir.glob(File.join(File.dirname(__FILE__), "**/*.rb")).
|
|
34
|
+
delete_if {|f| File.basename(f) =~ %r{(_)?spec(_helper)?.rb$}}
|
|
35
|
+
load_all Dir.glob(File.join(File.dirname(__FILE__), "../lib/**/*.rb"))
|
|
33
36
|
end
|
|
34
37
|
|
|
35
38
|
# --- Instructions ---
|
data/lib/watirsplash/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: watirsplash
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 7
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 2
|
|
8
8
|
- 3
|
|
9
|
-
-
|
|
10
|
-
version: 2.3.
|
|
9
|
+
- 2
|
|
10
|
+
version: 2.3.2
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Jarmo Pertman
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-09-
|
|
18
|
+
date: 2011-09-25 00:00:00 Z
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
21
21
|
name: rake
|
|
@@ -123,7 +123,7 @@ files:
|
|
|
123
123
|
- lib/watirsplash/generators/page.rb
|
|
124
124
|
- lib/watirsplash/generators/templates/new_project/.rspec
|
|
125
125
|
- lib/watirsplash/generators/templates/new_project/config.rb.tt
|
|
126
|
-
- lib/watirsplash/generators/templates/new_project/spec/spec_helper.rb
|
|
126
|
+
- lib/watirsplash/generators/templates/new_project/spec/spec_helper.rb.tt
|
|
127
127
|
- lib/watirsplash/generators/templates/page/lib/%formatted_namespace%/page/%formatted_page_name%.rb.tt
|
|
128
128
|
- lib/watirsplash/generators/templates/page/spec/%formatted_namespace%/page/%formatted_page_name%_spec.rb.tt
|
|
129
129
|
- lib/watirsplash/html_formatter.rb
|
|
@@ -173,7 +173,7 @@ rubyforge_project:
|
|
|
173
173
|
rubygems_version: 1.8.4
|
|
174
174
|
signing_key:
|
|
175
175
|
specification_version: 3
|
|
176
|
-
summary: watirsplash 2.3.
|
|
176
|
+
summary: watirsplash 2.3.2
|
|
177
177
|
test_files:
|
|
178
178
|
- spec/browser_spec.rb
|
|
179
179
|
- spec/page_spec.rb
|