bret-watircraft 0.4.0 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ === 0.4.1 / 2009-02-24
2
+
3
+ * Fix bug with script\console: no such file to load -- site_start
4
+
1
5
  === 0.4.0 / 2009-02-23
2
6
 
3
7
  You will need to run "watircraft ." at the root of your project in order to
@@ -30,6 +34,10 @@ Details on New Features
30
34
  rspec and cucumber tests. Also easier to translate learning from one to the
31
35
  other.
32
36
 
37
+ * Added Page#element_exists? This method will return false if an intermediate
38
+ part of the Watir syntax (e.g. frame) throws a Not Found exception. This makes
39
+ page.element_exists(:my_element) better than using page.my_element.exists?
40
+
33
41
  * Added Site#page method. Now, site.page("check out") is the same as
34
42
  site.check_out_page
35
43
 
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
- :minor: 4
3
- :patch: 0
2
+ :patch: 1
4
3
  :major: 0
4
+ :minor: 4
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
2
  APP_ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..'))
3
- requires = %w(irb/completion watir/irb-history site_start pp)
3
+ requires = %w(irb/completion watir/irb-history init/site_start pp)
4
4
  puts "Type 'irb START' at the prompt."
5
5
  exec "irb.bat -I #{APP_ROOT}/lib -r #{requires.join " -r "} --simple-prompt --readline"
@@ -1,3 +1,3 @@
1
1
  # This file is autogenerated. Do not edit.
2
2
  # Use 'rake version.rb' to update.
3
- module WatirCraft; VERSION = '0.4.0'; end
3
+ module WatirCraft; VERSION = '0.4.1'; end
data/watircraft.gemspec CHANGED
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{watircraft}
5
- s.version = "0.4.0"
5
+ s.version = "0.4.1"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Bret Pettichord", "Jim Matthews", "Charley Baker", "Adam Anderson"]
9
- s.date = %q{2009-02-24}
9
+ s.date = %q{2009-02-25}
10
10
  s.default_executable = %q{watircraft}
11
11
  s.description = %q{WatirCraft is a framework for web testing.}
12
12
  s.email = %q{bret@pettichord.com}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bret-watircraft
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bret Pettichord
@@ -12,7 +12,7 @@ autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
14
 
15
- date: 2009-02-24 00:00:00 -08:00
15
+ date: 2009-02-25 00:00:00 -08:00
16
16
  default_executable: watircraft
17
17
  dependencies:
18
18
  - !ruby/object:Gem::Dependency