rwebspec 4.1.3 → 4.1.4

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/CHANGELOG CHANGED
@@ -1,6 +1,9 @@
1
1
  CHANGELOG
2
2
  =========
3
3
 
4
+ 4.1.4
5
+ [Enhancement] Add warning to calling close_all_browsers
6
+
4
7
  4.1
5
8
  [Fixed] - click_button, click_button_with_id support :index
6
9
  [Refactored] - unit tests
data/Rakefile CHANGED
@@ -78,7 +78,7 @@ end
78
78
  spec = Gem::Specification.new do |s|
79
79
  s.platform= Gem::Platform::RUBY
80
80
  s.name = "rwebspec"
81
- s.version = "4.1.3"
81
+ s.version = "4.1.4"
82
82
  s.summary = "Web application functional specification in Ruby"
83
83
  s.description = "Executable functional specification for web applications in RSpec syntax with Watir or Selenium"
84
84
 
@@ -343,9 +343,13 @@ module RWebSpec
343
343
 
344
344
  #TODO determine browser type, check FireWatir support or not
345
345
  def close_all_browsers
346
- raise "not implemented"
346
+ puts "[WARN] not supported yet in RWebSpec-WebDriver"
347
347
  end
348
348
 
349
+ def self.close_all_browsers
350
+ puts "[WARN] not supported yet in RWebSpec-WebDriver"
351
+ end
352
+
349
353
  def full_url(relative_url)
350
354
  if @context && @context.base_url
351
355
  @context.base_url + relative_url
data/lib/rwebspec.rb CHANGED
@@ -16,7 +16,7 @@ end
16
16
  require 'rspec'
17
17
 
18
18
  unless defined? RWEBSPEC_VERSION
19
- RWEBSPEC_VERSION = RWEBUNIT_VERSION = "4.1.3"
19
+ RWEBSPEC_VERSION = RWEBUNIT_VERSION = "4.1.4"
20
20
  end
21
21
 
22
22
  $testwise_polling_interval = 1 # seconds
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rwebspec
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.1.3
4
+ version: 4.1.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire: rwebspec
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-01-25 00:00:00.000000000 Z
12
+ date: 2013-02-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rspec