watirspec 0.1.7 → 0.1.8

Sign up to get free protection for your applications and to get access to all the features.
data/History.rdoc CHANGED
@@ -1,3 +1,7 @@
1
+ === Version 0.1.8 / 2010-04-19
2
+
3
+ * tidied up some code, no changes in functionality
4
+
1
5
  === Version 0.1.7 / 2010-04-15
2
6
 
3
7
  * minor fix
@@ -1,3 +1,3 @@
1
1
  module WatiRspec
2
- VERSION = "0.1.7"
2
+ VERSION = "0.1.8"
3
3
  end
@@ -3,6 +3,10 @@
3
3
 
4
4
  module CommonApplicationHelper
5
5
 
6
+ # you can use these methods automatically inside of your it-blocks
7
+ # it "does something" do
8
+ # new_global_method.should == "it just works"
9
+ # end
6
10
  def new_global_method
7
11
  "it just works"
8
12
  end
@@ -1,4 +1,4 @@
1
- # ApplicationHelper module has helper methods, for easy use in specs
1
+ # ApplicationHelper module has helper methods for easy use in specs
2
2
  # see usages in spec/dummy_spec.rb
3
3
 
4
4
  module ApplicationHelper
@@ -3,11 +3,13 @@ module Config
3
3
  module Application
4
4
  # URL, which will be opened by every test
5
5
  # replace it with the URL of your application under test
6
+ # or if ui-test-common is used then
7
+ # URL = Config.full_url("/relative/url/index.html")
6
8
  URL = "about:blank"
7
9
  end
8
10
  end
9
11
 
10
- # A global configuration for specs, which will include by default
12
+ # A global configuration for specs in this project, which will include by default
11
13
  # a ApplicationHelper module and open Config::Application::URL with
12
14
  # the browser.
13
15
  # You can read more about RSpec-s before and after syntax from:
@@ -1,6 +1,9 @@
1
1
  # add all your require statements into this file to avoid unnecessary
2
2
  # code in your spec files
3
3
 
4
+ # uncomment following line to load functionality from ui-test-common
5
+ # WatiRspec::Util.load_common
6
+
4
7
  # by default everything, which is not a spec file, will be loaded
5
8
  local_dir = File.join(File.dirname(__FILE__), "**/*.rb")
6
9
  filtered_ruby_files = Dir.glob(local_dir).delete_if do |file|
@@ -1,5 +1,5 @@
1
- # this is just a fully working dummy spec file which you can run to see if
2
- # your configuration is correct and everything is working
1
+ # this is a fully working dummy spec file which you can run to see if
2
+ # your configuration is correct and everything is working as expected
3
3
 
4
4
  describe "WatiRspec" do
5
5
 
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 7
9
- version: 0.1.7
8
+ - 8
9
+ version: 0.1.8
10
10
  platform: ruby
11
11
  authors:
12
12
  - Jarmo Pertman
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-04-16 00:00:00 +03:00
17
+ date: 2010-04-19 00:00:00 +03:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -159,13 +159,6 @@ files:
159
159
  - templates/project/environment.rb
160
160
  - templates/project/ide_runner.rb
161
161
  - templates/project/spec/dummy_spec.rb
162
- - todo.txt
163
- - watirspec-0.1.1.gem
164
- - watirspec-0.1.2.gem
165
- - watirspec-0.1.3.gem
166
- - watirspec-0.1.4.gem
167
- - watirspec-0.1.5.gem
168
- - watirspec-0.1.6.gem
169
162
  has_rdoc: true
170
163
  homepage: http://github.com/jarmo/WatiRspec
171
164
  licenses: []
@@ -173,7 +166,7 @@ licenses: []
173
166
  post_install_message: |-
174
167
  *************************
175
168
 
176
- Thank you for installing WatiRspec! Don't forget to take a look at README file!
169
+ Thank you for installing WatiRspec 0.1.8! Don't forget to take a look at README file!
177
170
 
178
171
  Execute "watirspec generate" under your project's directory to generate default project structure.
179
172
 
@@ -207,6 +200,6 @@ rubyforge_project:
207
200
  rubygems_version: 1.3.6
208
201
  signing_key:
209
202
  specification_version: 3
210
- summary: watirspec 0.1.7
203
+ summary: watirspec 0.1.8
211
204
  test_files: []
212
205
 
data/todo.txt DELETED
@@ -1,3 +0,0 @@
1
- uus nime-idee - watirmelon
2
- kui watir::wait viskab exceptioni, siis after :all-is browser.close ei tööta sellesama exceptioni pärast! ära fixida...
3
-
data/watirspec-0.1.1.gem DELETED
Binary file
data/watirspec-0.1.2.gem DELETED
Binary file
data/watirspec-0.1.3.gem DELETED
Binary file
data/watirspec-0.1.4.gem DELETED
Binary file
data/watirspec-0.1.5.gem DELETED
Binary file
data/watirspec-0.1.6.gem DELETED
Binary file