ole-qa-framework 3.14.0 → 3.14.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4501b3296ccf036dc108d040b0f5094e2eea71d2
4
- data.tar.gz: f1b948a025e6562091e3868f9ab1a6881b1c5785
3
+ metadata.gz: fda8afd432cda6d8ec31f2da530e71da8e1ef1e5
4
+ data.tar.gz: b98b3bec9e9ce315d3cd018fac14489a03f98505
5
5
  SHA512:
6
- metadata.gz: 31b5425bd6d4f2c180938fc8b0c75cc34bc0c5b8d988a36b31d0a2a4977010846302496c434097132a0c3722977fa4dece16f34c9e451459106f210492da3b99
7
- data.tar.gz: 438b35850983646ccda90a83359ffe76da85403a4ce343464556a0776da133e7d557f19743ca34ba98adab2266bb5aab41ff0974d897e7334cfc69c5420d5e7e
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 using development environment.
1
+ # Default options for non-development use.
2
2
  ---
3
- :url: http://dev.ole.kuali.org/
4
- :docstore_url: http://dev.docstore.ole.kuali.org/
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: 60
8
+ :doc_wait: 45
@@ -15,6 +15,6 @@
15
15
  module OLE_QA
16
16
  module Framework
17
17
  # The version number for this project.
18
- VERSION = '3.14.0'
18
+ VERSION = '3.14.1'
19
19
  end
20
20
  end
@@ -91,6 +91,6 @@ describe "A Page" do
91
91
 
92
92
  it 'should set a frame element on the browser if one is present' do
93
93
  OLE_QA::Framework::OLEFS::Requisition.new(@ole).open
94
- @page.browser.class.should == Watir::Frame
94
+ @page.browser.class.should == Watir::IFrame
95
95
  end
96
96
  end
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.0
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-04-21 00:00:00.000000000 Z
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