ole-qa-framework 3.0.0 → 3.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ### v3.0.1 - 2013/10/29
2
+
3
+ * Line Object Fix
4
+ * Fix set_subline method on lib/common/line_object.rb.
5
+
1
6
  ### v3.0.0 - 2013/10/15
2
7
 
3
8
  * Flexible Line Objects
@@ -60,10 +60,10 @@ module OLE_QA::Framework
60
60
  raise StandardError, "Name must be a symbol. Given: #{name} (#{name.class})" unless name.instance_of?(Symbol)
61
61
  raise StandardError, "Klas must be a class. Given: #{klas} (#{klas.class})" unless klas.instance_of?(Class)
62
62
  raise StandardError, "Subline object is already defined. (Use the 'force = true' option to suppress this error.)" if @sublines.include?(name) && ! force
63
- instance_variable_set("@#{name}", klas.new(@ole, 1))
63
+ instance_variable_set("@#{name}", klas.new(@ole, self, 1))
64
64
  make_reader(name) unless force
65
65
  @sublines << name unless force
66
66
  end
67
67
  alias_method(:subline, :set_subline)
68
68
  end
69
- end
69
+ end
@@ -1,7 +1,7 @@
1
- # Default options for non-development use.
1
+ # Default options for using development environment.
2
2
  ---
3
- :url: http://tst.ole.kuali.org/
3
+ :url: http://dev.ole.kuali.org/
4
4
  :headless?: true
5
5
  :implicit_wait: 0
6
6
  :explicit_wait: 15
7
- :doc_wait: 45
7
+ :doc_wait: 60
@@ -15,6 +15,6 @@
15
15
  module OLE_QA
16
16
  module Framework
17
17
  # The version number for this project.
18
- VERSION = '3.0.0'
18
+ VERSION = '3.0.1'
19
19
  end
20
20
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ole-qa-framework
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.0.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-10-15 00:00:00.000000000 Z
12
+ date: 2013-10-29 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler