diff --git a/Gemfile b/Gemfile index bf84e8d..564afa7 100644 --- a/Gemfile +++ b/Gemfile @@ -1,4 +1,4 @@ source "http://rubygems.org" -# Specify your gem's dependencies in antigate.gemspec +# Specify your gem's dependencies in captchabot.gemspec gemspec diff --git a/antigate.gemspec b/captchabot.gemspec similarity index 56% rename from antigate.gemspec rename to captchabot.gemspec index d959bb1..bc4b6ca 100644 --- a/antigate.gemspec +++ b/captchabot.gemspec @@ -1,17 +1,17 @@ # -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) -require "antigate/version" +require "captchabot/version" Gem::Specification.new do |s| - s.name = "antigate" - s.version = Antigate::VERSION - s.authors = ["Ivan Aryutkin"] - s.email = ["iivanare@gmail.com"] - s.homepage = "https://github.com/ivanare/antigate" - s.summary = %q{Antigate wrapper} - s.description = %q{Wrapper for Antigate API} + s.name = "captchabot" + s.version = Captchabot::VERSION + s.authors = ["Dmitry Ukolov"] + s.email = ["da.ukolov@gmail.com"] + s.homepage = "https://github.com/ukolovda/captchabot" + s.summary = %q{Captchabot wrapper} + s.description = %q{Wrapper for Captchabot.com} - s.rubyforge_project = "antigate" + s.rubyforge_project = "captchabot" s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") diff --git a/lib/antigate.rb b/lib/captchabot.rb similarity index 97% rename from lib/antigate.rb rename to lib/captchabot.rb index 1415454..8168b5e 100644 --- a/lib/antigate.rb +++ b/lib/captchabot.rb @@ -1,6 +1,6 @@ -require "antigate/version" +require "captchabot/version" -module Antigate +module Captchabot require 'net/http' require 'uri' require 'base64' diff --git a/lib/antigate/version.rb b/lib/captchabot/version.rb similarity index 57% rename from lib/antigate/version.rb rename to lib/captchabot/version.rb index 23bd9f9..74797ce 100644 --- a/lib/antigate/version.rb +++ b/lib/captchabot/version.rb @@ -1,3 +1,3 @@ -module Antigate +module Captchabot VERSION = "0.0.2" end