forked from shvets/selenium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
selenium.gemspec.erb
34 lines (24 loc) · 1.03 KB
/
selenium.gemspec.erb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# -*- encoding: utf-8 -*-
require File.expand_path(File.dirname(__FILE__) + '/lib/selenium/version')
Gem::Specification.new do |spec|
spec.name = "selenium"
spec.summary = %q{Gem wrapper for selenium server.}
spec.description = %q{Gem wrapper for selenium server.}
spec.email = "alexander.shvets@gmail.com"
spec.authors = ["Alexander Shvets"]
spec.homepage = "http://github.com/shvets/selenium"
spec.files = `git ls-files`.split($\)
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.executables = ["selenium"]
spec.version = Selenium::VERSION
spec.post_install_message = <<-TEXT
-------------------------------------------------------------------------------
Please now run:
$ selenium install
NB. This will download jars that this gem needs to run from the internet.
It will put them into ~/.selenium/assets.
-------------------------------------------------------------------------------
TEXT
<%= project_dependencies %>
end