rwebspec 5.1.0 → 5.2.0
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/CHANGELOG +4 -1
- data/Rakefile +3 -3
- data/lib/rwebspec.rb +5 -3
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 156e67f8bd1563f0f6ba9caafc86886a57e219fd
|
4
|
+
data.tar.gz: c7cb43c1210ed92f5b4c7a5fe4e873c898de6be3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 86bbfd3dc866d8680b900d03c661add2fd0eea5c105d40daaff1ce037446347e420fc2f06fa19ad331d0eb0b054814bd28420178e543d84a1e9d9134bc4981b1
|
7
|
+
data.tar.gz: 0149f4c3f7fe42c465f6d1dec0b2205341f99a19d2d131886441354809e665a2bbe225f070bd04c19730c936d4df8159347521250788440f9c9160052d78b133
|
data/CHANGELOG
CHANGED
@@ -1,10 +1,13 @@
|
|
1
1
|
CHANGELOG
|
2
2
|
=========
|
3
3
|
|
4
|
+
5.2
|
5
|
+
[Support] minitest 5
|
6
|
+
[Change] Support activesupport version
|
7
|
+
|
4
8
|
5.1
|
5
9
|
[Feature] Use minitest 4 for assertion
|
6
10
|
[Fixes] Handle assert_text_present in try_for{}
|
7
|
-
[Change] Lock activesupport version 3.2.17
|
8
11
|
|
9
12
|
5.0.4
|
10
13
|
[Enhancement] click_button_with_id, click_link_with_id will focus on the element first (Selenium) to avoid unable to click when the browser window too small.
|
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 = "5.
|
80
|
+
s.version = "5.2.0"
|
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
|
|
@@ -102,8 +102,8 @@ spec = Gem::Specification.new do |s|
|
|
102
102
|
s.add_dependency(%q<rspec-mocks>, [">= 2.13.0"])
|
103
103
|
s.add_dependency(%q<rspec-expectations>, [">= 2.13"])
|
104
104
|
s.add_dependency("commonwatir", ">= 4.0.0")
|
105
|
-
s.add_dependency("minitest", "
|
106
|
-
s.add_dependency("activesupport", "
|
105
|
+
s.add_dependency("minitest", ">= 4.0")
|
106
|
+
s.add_dependency("activesupport", ">= 3.2.17")
|
107
107
|
|
108
108
|
unless RUBY_PLATFORM =~ /mingw/
|
109
109
|
s.add_dependency("selenium-webdriver")
|
data/lib/rwebspec.rb
CHANGED
@@ -4,9 +4,11 @@
|
|
4
4
|
#***********************************************************
|
5
5
|
require "rubygems"
|
6
6
|
|
7
|
-
gem "activesupport"
|
8
|
-
|
7
|
+
gem "activesupport" #, "~> 3.2.17"
|
8
|
+
require 'active_support'
|
9
|
+
require 'active_support/deprecation'
|
9
10
|
|
11
|
+
gem "minitest" #, "~> 4.0" # ver 5 return errors
|
10
12
|
require 'minitest/autorun'
|
11
13
|
|
12
14
|
# Load active_support, so that we can use 1.days.ago
|
@@ -21,7 +23,7 @@ end
|
|
21
23
|
require 'rspec'
|
22
24
|
|
23
25
|
unless defined? RWEBSPEC_VERSION
|
24
|
-
RWEBSPEC_VERSION = RWEBUNIT_VERSION = "5.
|
26
|
+
RWEBSPEC_VERSION = RWEBUNIT_VERSION = "5.2.0"
|
25
27
|
end
|
26
28
|
|
27
29
|
$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: 5.
|
4
|
+
version: 5.2.0
|
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-
|
11
|
+
date: 2014-06-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|
@@ -84,28 +84,28 @@ dependencies:
|
|
84
84
|
name: minitest
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
|
-
- - "
|
87
|
+
- - ">="
|
88
88
|
- !ruby/object:Gem::Version
|
89
89
|
version: '4.0'
|
90
90
|
type: :runtime
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
|
-
- - "
|
94
|
+
- - ">="
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: '4.0'
|
97
97
|
- !ruby/object:Gem::Dependency
|
98
98
|
name: activesupport
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
100
100
|
requirements:
|
101
|
-
- - "
|
101
|
+
- - ">="
|
102
102
|
- !ruby/object:Gem::Version
|
103
103
|
version: 3.2.17
|
104
104
|
type: :runtime
|
105
105
|
prerelease: false
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
107
107
|
requirements:
|
108
|
-
- - "
|
108
|
+
- - ">="
|
109
109
|
- !ruby/object:Gem::Version
|
110
110
|
version: 3.2.17
|
111
111
|
- !ruby/object:Gem::Dependency
|