rwebspec 6.0.1 → 6.0.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.
- checksums.yaml +4 -4
- data/Rakefile +1 -1
- data/lib/rwebspec.rb +5 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 466fa86e114027d3de336b2fce0ff376e15a843e
|
|
4
|
+
data.tar.gz: d5dfeaf9488abe7701385d34eee2bfe4fd9a8bcf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4102d872a465a78e1932a8f83aae5e0b55b47c127122ce75c5d17b08f03e75b6b67790d9de395793ae071c415dcbaeb1ea0bfd24bf84fa4cc7f486dcf7c4ce73
|
|
7
|
+
data.tar.gz: fe9c2c8c907dd3cd156e63d115f848438e0670c2ee36ff78067ec5caa4c67d2c70afab823ef5b42b8e4102dc7809690803464d763bc9fd99510b9fc5e3e00295
|
data/Rakefile
CHANGED
|
@@ -77,7 +77,7 @@ end
|
|
|
77
77
|
spec = Gem::Specification.new do |s|
|
|
78
78
|
s.platform= Gem::Platform::RUBY
|
|
79
79
|
s.name = "rwebspec"
|
|
80
|
-
s.version = "6.0.
|
|
80
|
+
s.version = "6.0.2"
|
|
81
81
|
s.summary = "Web application functional specification in Ruby"
|
|
82
82
|
s.description = "Executable functional specification for web applications in RSpec syntax with Watir or Selenium WebDriver"
|
|
83
83
|
|
data/lib/rwebspec.rb
CHANGED
|
@@ -25,6 +25,9 @@ end
|
|
|
25
25
|
|
|
26
26
|
require 'rspec'
|
|
27
27
|
|
|
28
|
+
=begin
|
|
29
|
+
# From RWebSpec 6 fully supports RSpec 3
|
|
30
|
+
#
|
|
28
31
|
# For non-rwebspec project, need to add to the help to avoid deprecation warning
|
|
29
32
|
if ::RSpec::Version::STRING && ::RSpec::Version::STRING =~ /^3/
|
|
30
33
|
RSpec.configure do |config|
|
|
@@ -33,9 +36,10 @@ if ::RSpec::Version::STRING && ::RSpec::Version::STRING =~ /^3/
|
|
|
33
36
|
end
|
|
34
37
|
end
|
|
35
38
|
end
|
|
39
|
+
=end
|
|
36
40
|
|
|
37
41
|
unless defined? RWEBSPEC_VERSION
|
|
38
|
-
RWEBSPEC_VERSION = RWEBUNIT_VERSION = "6.0.
|
|
42
|
+
RWEBSPEC_VERSION = RWEBUNIT_VERSION = "6.0.2"
|
|
39
43
|
end
|
|
40
44
|
|
|
41
45
|
$testwise_polling_interval = 1 # seconds
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rwebspec
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 6.0.
|
|
4
|
+
version: 6.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Zhimin Zhan
|
|
8
8
|
autorequire: rwebspec
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-08-
|
|
11
|
+
date: 2014-08-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec
|