watirsplash 2.3.1 → 2.3.2

Sign up to get free protection for your applications and to get access to all the features.
data/.rspec CHANGED
@@ -1,5 +1,5 @@
1
- --require spec/spec_helper.rb
1
+ --require ./spec/spec_helper.rb
2
2
  --color
3
3
  --format documentation
4
- --require lib/watirsplash/html_formatter
4
+ --require ./lib/watirsplash/html_formatter
5
5
  --format WatirSplash::HtmlFormatter
data/Gemfile CHANGED
@@ -12,6 +12,7 @@ gem "watir-webdriver", WatirSplash::Version::WATIR_WEBDRIVER
12
12
  gem "firewatir", ">= 1.9.4"
13
13
  gem "rspec", "~>2.6.0"
14
14
  gem "spork", "~>0.9.0.rc9"
15
+ gem "spork-local_process"
15
16
 
16
17
  # add your project specific dependencies here:
17
18
  # gem "ruby-debug", "0.10.3"
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
@@ -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
- require_all Dir.glob(File.join(File.dirname(__FILE__), "../lib/**/*.rb"))
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 ---
@@ -1,10 +1,10 @@
1
1
  module WatirSplash
2
2
  module Version
3
- WATIRSPLASH = "2.3.1"
3
+ WATIRSPLASH = "2.3.2"
4
4
 
5
5
  # possible runtime dependencies
6
6
  WATIR = "2.0.2"
7
7
  WIN32SCREENSHOT = "~>1.0.5"
8
- WATIR_WEBDRIVER = "~>0.3.3"
8
+ WATIR_WEBDRIVER = "~>0.3.4"
9
9
  end
10
10
  end
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: 1
4
+ hash: 7
5
5
  prerelease:
6
6
  segments:
7
7
  - 2
8
8
  - 3
9
- - 1
10
- version: 2.3.1
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-11 00:00:00 Z
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.1
176
+ summary: watirsplash 2.3.2
177
177
  test_files:
178
178
  - spec/browser_spec.rb
179
179
  - spec/page_spec.rb