wsl 0.1.4 → 0.1.5
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.
- data/History.txt +15 -0
- data/Manifest +1 -1
- data/README.txt +1 -9
- data/Rakefile +1 -1
- data/wsl.gemspec +3 -3
- metadata +3 -2
data/History.txt
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
== 0.1.4 22/6/2009
|
|
2
|
+
|
|
3
|
+
* 1 major improvement
|
|
4
|
+
* Open sourced today via Rubyforge!
|
|
5
|
+
* Added examples directory to gem.
|
|
6
|
+
* Added history.txt file.
|
|
7
|
+
* 2 bug fixes
|
|
8
|
+
* None identified/fixed this release.
|
|
9
|
+
|
|
10
|
+
== 0.1.5 23/6/2009
|
|
11
|
+
|
|
12
|
+
* 1 major improvement
|
|
13
|
+
* Checked in code to Rubyforge
|
|
14
|
+
* 2 bug fixes
|
|
15
|
+
* None identified/fixed this release.
|
data/Manifest
CHANGED
|
@@ -5,6 +5,7 @@ examples/GoogleSearchExample_WSL.rb
|
|
|
5
5
|
examples/SelectExample.rb
|
|
6
6
|
examples/SuiteCleanup.rb
|
|
7
7
|
examples/SuiteStartup.rb
|
|
8
|
+
History.txt
|
|
8
9
|
lib/IEContext.rb
|
|
9
10
|
lib/utils/Logger.rb
|
|
10
11
|
lib/utils/TestSuiteCleanup.rb
|
|
@@ -15,4 +16,3 @@ lib/wslSuite.rb
|
|
|
15
16
|
Manifest
|
|
16
17
|
Rakefile
|
|
17
18
|
README.txt
|
|
18
|
-
wsl.gemspec
|
data/README.txt
CHANGED
|
@@ -1,8 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
Legal mumbo-jumbo disclaimer (just to cover my ass) -
|
|
4
|
-
The software is provided as is, and there is no guarantee of its suitability for a particular task.
|
|
5
|
-
You use it at your own risk, and the creator(s) of the software accept no liability whatsoever.
|
|
1
|
+
WSL is released under the GNU Public Licence.
|
|
6
2
|
|
|
7
3
|
Go to http;//wsl.xqoob.com for more details.
|
|
8
4
|
|
|
@@ -12,7 +8,3 @@ NOTE: if after installing WSL you get the following error -
|
|
|
12
8
|
run these commands-
|
|
13
9
|
$> Gem uninstall windows-pr
|
|
14
10
|
$> Gem install windows-pr
|
|
15
|
-
See http://groups.google.com/group/watir-general/browse_thread/thread/3f6741eccf0cb7b8 for more details.
|
|
16
|
-
|
|
17
|
-
30-apr-2009
|
|
18
|
-
Wadud Ruf
|
data/Rakefile
CHANGED
data/wsl.gemspec
CHANGED
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = %q{wsl}
|
|
5
|
-
s.version = "0.1.
|
|
5
|
+
s.version = "0.1.5"
|
|
6
6
|
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
|
8
8
|
s.authors = ["Wadud Ruf"]
|
|
9
|
-
s.date = %q{2009-06-
|
|
9
|
+
s.date = %q{2009-06-23}
|
|
10
10
|
s.description = %q{WSL (WATiR Scripting Language) is a DSL built on top of WATiR that allows for the automation of web application testing through Internet Explorer.}
|
|
11
11
|
s.email = %q{wadud.ruf@xqoob.com}
|
|
12
12
|
s.extra_rdoc_files = ["lib/IEContext.rb", "lib/utils/Logger.rb", "lib/utils/TestSuiteCleanup.rb", "lib/utils/TestSuiteStartup.rb", "lib/wsl.rb", "lib/wslPrivate.rb", "lib/wslSuite.rb", "README.txt"]
|
|
13
|
-
s.files = ["examples/ClickExample.rb", "examples/DemoExample.rb", "examples/DemoTestSuite.rb", "examples/GoogleSearchExample_WSL.rb", "examples/SelectExample.rb", "examples/SuiteCleanup.rb", "examples/SuiteStartup.rb", "lib/IEContext.rb", "lib/utils/Logger.rb", "lib/utils/TestSuiteCleanup.rb", "lib/utils/TestSuiteStartup.rb", "lib/wsl.rb", "lib/wslPrivate.rb", "lib/wslSuite.rb", "Manifest", "Rakefile", "README.txt", "wsl.gemspec"]
|
|
13
|
+
s.files = ["examples/ClickExample.rb", "examples/DemoExample.rb", "examples/DemoTestSuite.rb", "examples/GoogleSearchExample_WSL.rb", "examples/SelectExample.rb", "examples/SuiteCleanup.rb", "examples/SuiteStartup.rb", "History.txt", "lib/IEContext.rb", "lib/utils/Logger.rb", "lib/utils/TestSuiteCleanup.rb", "lib/utils/TestSuiteStartup.rb", "lib/wsl.rb", "lib/wslPrivate.rb", "lib/wslSuite.rb", "Manifest", "Rakefile", "README.txt", "wsl.gemspec"]
|
|
14
14
|
s.has_rdoc = true
|
|
15
15
|
s.homepage = %q{http://wsl.xqoob.com}
|
|
16
16
|
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Wsl", "--main", "README.txt"]
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: wsl
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Wadud Ruf
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-06-
|
|
12
|
+
date: 2009-06-23 00:00:00 +01:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
@@ -45,6 +45,7 @@ files:
|
|
|
45
45
|
- examples/SelectExample.rb
|
|
46
46
|
- examples/SuiteCleanup.rb
|
|
47
47
|
- examples/SuiteStartup.rb
|
|
48
|
+
- History.txt
|
|
48
49
|
- lib/IEContext.rb
|
|
49
50
|
- lib/utils/Logger.rb
|
|
50
51
|
- lib/utils/TestSuiteCleanup.rb
|