selenium-rake.gemspec in selenium-rake-0.0.1 vs selenium-rake.gemspec in selenium-rake-0.0.2

- old
+ new

@@ -1,13 +1,13 @@ # -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) -require "selenium-rake/version" +require "selenium/rake/version" Gem::Specification.new do |s| s.name = "selenium-rake" s.version = Selenium::Rake::VERSION - s.authors = ["Chris Holmes"] + s.authors = ["Chris Holmes", "Michael Parreno-Villa"] s.email = ["tochrisholmes@gmail.com"] s.homepage = "" s.summary = %q{"a few rake tasks to run selenium rc server and ui tests"} s.description = %q{"dump test files into tests folder and run rake tasks to test using selenium"} @@ -17,8 +17,8 @@ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] # specify any dependencies here; for example: - # s.add_development_dependency "rspec" - # s.add_runtime_dependency "rest-client" + #s.add_development_dependency "selenium/client" + s.add_runtime_dependency "selenium-client" end