Quellcode durchsuchen

Merge remote-tracking branch 'tomhukins/master'

Gordon Child vor 14 Jahren
Ursprung
Commit
6a2699bb3b

+ 15 - 8
Makefile.PL

@@ -3,16 +3,23 @@ use inc::Module::Install;
 name     'Selenium-Remote-Driver';
 all_from 'lib/Selenium/Remote/Driver.pm';
 author   q{"Aditya Ivaturi" <"ivaturi@gmail.com">};
-license  'perl';
+license  'apache';
 
-build_requires 'Test::More';
-build_requires 'LWP::UserAgent';
 build_requires 'LWP::Protocol::PSGI';
-build_requires 'HTTP::Headers';
-build_requires 'HTTP::Request';
-build_requires 'Carp';
-build_requires 'JSON';
-build_requires 'Net::Ping';
+build_requires 'Test::More';
+requires 'LWP::UserAgent';
+requires 'HTTP::Headers';
+requires 'HTTP::Request';
+requires 'Carp';
+requires 'JSON';
+requires 'Net::Ping';
+
+resources 'bugtracker' => 'https://github.com/aivaturi/Selenium-Remote-Driver/issues';
+resources 'repository' => {
+    type => 'git',
+    url => 'git://github.com/aivaturi/Selenium-Remote-Driver.git',
+    web => 'https://github.com/aivaturi/Selenium-Remote-Driver',
+};
 
 auto_install;
 

+ 0 - 1
lib/Selenium/Remote/Driver.pm

@@ -2,7 +2,6 @@ package Selenium::Remote::Driver;
 
 use strict;
 use warnings;
-use Data::Dumper;
 
 use Carp;
 our @CARP_NOT;

+ 0 - 1
lib/Selenium/Remote/ErrorHandler.pm

@@ -3,7 +3,6 @@ package Selenium::Remote::ErrorHandler;
 use strict;
 use warnings;
 
-use Data::Dumper;
 use Carp qw(croak);
 
 # We're going to handle only codes that are errors.

+ 0 - 1
lib/Selenium/Remote/RemoteConnection.pm

@@ -9,7 +9,6 @@ use HTTP::Request;
 use Net::Ping;
 use Carp qw(croak);
 use JSON;
-use Data::Dumper;
 
 use Selenium::Remote::ErrorHandler;
 

+ 0 - 1
lib/Selenium/Remote/WebElement.pm

@@ -2,7 +2,6 @@ package Selenium::Remote::WebElement;
 
 use strict;
 use warnings;
-use Data::Dumper;
 
 =head1 NAME