ole-qa-framework 3.14.0 → 3.14.1
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.md +8 -0
- data/CONTRIBUTIONS.md +23 -0
- data/lib/config/default_options.yml +4 -4
- data/lib/ole_qa_framework/VERSION.rb +1 -1
- data/spec/common/page_spec.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fda8afd432cda6d8ec31f2da530e71da8e1ef1e5
|
|
4
|
+
data.tar.gz: b98b3bec9e9ce315d3cd018fac14489a03f98505
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8a82c0e74359a8b1059e9fef39a72a568101b7d69f1fe9b64a791a96fa9ee7b121757847d999b03fb00f73e9d870b00f62710990c4a4d752b3013c4958309afd
|
|
7
|
+
data.tar.gz: 4a6e391e174c7edce8956702243ca2b486510f703bf640730e58fd3106e2104e2b395294b04d2c393f11842ebe045e7d88951097f9d4c90971f1be8725a60c73
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
### v3.14.1 - 2014/05/19
|
|
2
|
+
|
|
3
|
+
* Add Conributions document
|
|
4
|
+
* Update default options
|
|
5
|
+
* Framework uses Test Environment by default
|
|
6
|
+
* Update Page Spec for Watir 0.6.9 Compatibility
|
|
7
|
+
* Page spec now expects IFrame instead of Frame
|
|
8
|
+
|
|
1
9
|
### v3.14.0 - 2014/04/21
|
|
2
10
|
|
|
3
11
|
* Add Rake works_with task
|
data/CONTRIBUTIONS.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Contributions
|
|
2
|
+
|
|
3
|
+
This gem relies on the following dependencies:
|
|
4
|
+
|
|
5
|
+
* Bundler
|
|
6
|
+
* MIT License
|
|
7
|
+
* Portions copyright 2010, Andre Arko
|
|
8
|
+
* Portions copyright 2009, Engine Yard
|
|
9
|
+
* Rake
|
|
10
|
+
* MIT-style License
|
|
11
|
+
* Copyright 2004-2013, Jim Weirich
|
|
12
|
+
* Yard
|
|
13
|
+
* MIT License
|
|
14
|
+
* Copyright 2007-2013, Loren Segal
|
|
15
|
+
* Watir-Webdriver
|
|
16
|
+
* MIT License
|
|
17
|
+
* Copyright 2009-2014, Jari Bakken
|
|
18
|
+
* Headless
|
|
19
|
+
* MIT-style License
|
|
20
|
+
* Copyright 2010, Leonid Shevtsov
|
|
21
|
+
* RSpec
|
|
22
|
+
* MIT License
|
|
23
|
+
* Copyright 2009, Chad Humphries & David Chelimsky
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
# Default options for
|
|
1
|
+
# Default options for non-development use.
|
|
2
2
|
---
|
|
3
|
-
:url: http://
|
|
4
|
-
:docstore_url: http://
|
|
3
|
+
:url: http://tst.ole.kuali.org/
|
|
4
|
+
:docstore_url: http://tst.docstore.ole.kuali.org/
|
|
5
5
|
:headless?: true
|
|
6
6
|
:implicit_wait: 0
|
|
7
7
|
:explicit_wait: 15
|
|
8
|
-
:doc_wait:
|
|
8
|
+
:doc_wait: 45
|
data/spec/common/page_spec.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ole-qa-framework
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.14.
|
|
4
|
+
version: 3.14.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jain Waldrip
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-05-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -104,6 +104,7 @@ extra_rdoc_files: []
|
|
|
104
104
|
files:
|
|
105
105
|
- ".gitignore"
|
|
106
106
|
- CHANGELOG.md
|
|
107
|
+
- CONTRIBUTIONS.md
|
|
107
108
|
- Gemfile
|
|
108
109
|
- LICENSE.md
|
|
109
110
|
- README.md
|