rwebspec 2.0.0 → 2.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/CHANGELOG +2 -1
  2. data/Rakefile +1 -1
  3. data/lib/rwebspec.rb +4 -3
  4. metadata +3 -3
data/CHANGELOG CHANGED
@@ -1,6 +1,7 @@
1
1
  CHANGELOG
2
2
  =========
3
-
3
+ 2.0.1
4
+ [Fixes] loading watir gem on non-windows platform
4
5
  2.0
5
6
  [Update] Deprecate support for FireWatir, speed up loading
6
7
  [Update] Drop constant naming RWebUnit
data/Rakefile CHANGED
@@ -71,7 +71,7 @@ end
71
71
  spec = Gem::Specification.new do |s|
72
72
  s.platform= Gem::Platform::RUBY
73
73
  s.name = "rwebspec"
74
- s.version = "2.0.0"
74
+ s.version = "2.0.1"
75
75
  s.summary = "Web application functional specification in Ruby"
76
76
  s.description = "Executable functional specification for web applications in RSpec syntax and Watir"
77
77
 
data/lib/rwebspec.rb CHANGED
@@ -30,7 +30,7 @@ end
30
30
  require 'spec'
31
31
 
32
32
  unless defined? RWEBSPEC_VERSION
33
- RWEBSPEC_VERSION = RWEBUNIT_VERSION = "2.0.0"
33
+ RWEBSPEC_VERSION = RWEBUNIT_VERSION = "2.0.1"
34
34
  end
35
35
 
36
36
  if RUBY_PLATFORM =~ /mswin/ or RUBY_PLATFORM =~ /mingw/
@@ -55,12 +55,13 @@ require File.dirname(__FILE__) + "/rwebspec/rspec_helper"
55
55
  require File.dirname(__FILE__) + "/rwebspec/load_test_helper"
56
56
 
57
57
  require File.dirname(__FILE__) + "/rwebspec/matchers/contains_text"
58
-
59
58
  require File.dirname(__FILE__) + "/extensions/rspec_extensions"
60
- require File.dirname(__FILE__) + "/extensions/watir_extensions"
59
+
61
60
  require File.dirname(__FILE__) + "/extensions/firewatir_extensions" if $ENABLE_FIREFOX
62
61
  if RUBY_PLATFORM =~ /mswin/ or RUBY_PLATFORM =~ /mingw/
62
+ require File.dirname(__FILE__) + "/extensions/watir_extensions"
63
63
  require File.dirname(__FILE__) + "/extensions/window_script_extensions.rb"
64
64
  end
65
+
65
66
  require File.dirname(__FILE__) + "/plugins/testwise_plugin.rb"
66
67
 
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 2
7
7
  - 0
8
- - 0
9
- version: 2.0.0
8
+ - 1
9
+ version: 2.0.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Zhimin Zhan
@@ -14,7 +14,7 @@ autorequire: rwebspec
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2011-10-15 00:00:00 +10:00
17
+ date: 2011-10-21 00:00:00 +10:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency