Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use correct gem name and homepage #38

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ backward compatibility with previous versions of Rails.

or

gem 'simple_captcha', :git => 'git://github.com/galetahub/simple-captcha.git'
gem 'galetahub-simple_captcha', :git => 'git://github.com/galetahub/simple-captcha.git'

==Setup

Expand Down
8 changes: 4 additions & 4 deletions simple_captcha.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ $:.push File.expand_path("../lib", __FILE__)
require "simple_captcha/version"

Gem::Specification.new do |s|
s.name = "simple_captcha"
s.name = "galetahub-simple_captcha"
s.version = SimpleCaptcha::VERSION.dup
s.platform = Gem::Platform::RUBY
s.platform = Gem::Platform::RUBY
s.summary = "SimpleCaptcha is the simplest and a robust captcha plugin."
s.description = "SimpleCaptcha is available to be used with Rails 3 or above and also it provides the backward compatibility with previous versions of Rails."
s.authors = ["Pavlo Galeta", "Igor Galeta"]
s.email = "galeta.igor@gmail.com"
s.homepage = "http://github.com/izzm/simple-captcha"
s.homepage = "https://github.com/galetahub/simple-captcha"

s.files = Dir["{lib}/**/*"] + ["Rakefile", "README.rdoc"]
s.test_files = Dir["{test}/**/*"]
s.extra_rdoc_files = ["README.rdoc"]
Expand Down