Skip to content

Commit

Permalink
Renamed class and gem.
Browse files Browse the repository at this point in the history
  • Loading branch information
ukolovda committed Aug 5, 2014
1 parent 4f0039d commit e6d8225
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -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
18 changes: 9 additions & 9 deletions antigate.gemspec → captchabot.gemspec
Original file line number Diff line number Diff line change
@@ -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")
Expand Down
4 changes: 2 additions & 2 deletions lib/antigate.rb → lib/captchabot.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require "antigate/version"
require "captchabot/version"

module Antigate
module Captchabot
require 'net/http'
require 'uri'
require 'base64'
Expand Down
2 changes: 1 addition & 1 deletion lib/antigate/version.rb → lib/captchabot/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Antigate
module Captchabot
VERSION = "0.0.2"
end

0 comments on commit e6d8225

Please sign in to comment.