tmak-selenium_server_jar 2009.1.13

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ Copyright (c) 2009 Thomas Marek
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ 'Software'), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
17
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
18
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
19
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
20
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21
+
@@ -0,0 +1,27 @@
1
+ = selenium_server_jar
2
+
3
+ A wrapper gem for the selenium server jar.
4
+
5
+
6
+ == Install
7
+
8
+ sudo gem install tmak-selenium_server_jar --source http://gems.github.com
9
+
10
+
11
+ == Example
12
+
13
+ begin
14
+ require "selenium_server_jar"
15
+ rescue LoadError
16
+ require "rubygems"
17
+ gem "tmak-selenium_server_jar"
18
+ require "selenium_server_jar"
19
+ end
20
+
21
+ SeleniumServerJar.file_path
22
+
23
+
24
+ == Copyright
25
+
26
+ Copyright (c) 2009 Thomas Marek. See LICENSE for details.
27
+
@@ -0,0 +1,18 @@
1
+ require "rubygems"
2
+ require "rake"
3
+
4
+ begin
5
+ require "jeweler"
6
+ Jeweler::Tasks.new do |gem|
7
+ gem.name = "selenium_server_jar"
8
+ gem.summary = "A wrapper gem for the selenium server jar"
9
+ gem.email = "tmak85@googlemail.com"
10
+ gem.homepage = "http://github.com/tmak/selenium_server_jar"
11
+ gem.authors = ["Thomas Marek"]
12
+ gem.files = %w(LICENSE README.rdoc Rakefile) + Dir.glob("{lib,vendor}/**/*")
13
+ gem.require_path = "lib"
14
+ end
15
+ rescue LoadError
16
+ puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
17
+ end
18
+
@@ -0,0 +1,6 @@
1
+ module SeleniumServerJar
2
+ def self.file_path
3
+ File.expand_path(File.dirname(__FILE__) + "/../vendor/selenium-server.jar")
4
+ end
5
+ end
6
+
metadata ADDED
@@ -0,0 +1,59 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: tmak-selenium_server_jar
3
+ version: !ruby/object:Gem::Version
4
+ version: 2009.1.13
5
+ platform: ruby
6
+ authors:
7
+ - Thomas Marek
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-03-13 00:00:00 -07:00
13
+ default_executable:
14
+ dependencies: []
15
+
16
+ description:
17
+ email: tmak85@googlemail.com
18
+ executables: []
19
+
20
+ extensions: []
21
+
22
+ extra_rdoc_files:
23
+ - README.rdoc
24
+ - LICENSE
25
+ files:
26
+ - LICENSE
27
+ - README.rdoc
28
+ - Rakefile
29
+ - lib/selenium_server_jar.rb
30
+ - vendor/selenium-server.jar
31
+ has_rdoc: true
32
+ homepage: http://github.com/tmak/selenium_server_jar
33
+ post_install_message:
34
+ rdoc_options:
35
+ - --inline-source
36
+ - --charset=UTF-8
37
+ require_paths:
38
+ - lib
39
+ required_ruby_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: "0"
44
+ version:
45
+ required_rubygems_version: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: "0"
50
+ version:
51
+ requirements: []
52
+
53
+ rubyforge_project:
54
+ rubygems_version: 1.2.0
55
+ signing_key:
56
+ specification_version: 2
57
+ summary: A wrapper gem for the selenium server jar
58
+ test_files: []
59
+