Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 427
- Log:
Version 1.0.1 of the Hub application, which adds reCaptcha
verification to the sign-up form. Implemented after spambots
attacked the ROOL site and signed up hundreds of bogus users.
- Author:
- rool
- Date:
- Tue Aug 30 11:48:22 +0100 2011
- Size:
- 1933 Bytes
1 | # Generated by jeweler |
2 | # DO NOT EDIT THIS FILE DIRECTLY |
3 | # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec' |
4 | # -*- encoding: utf-8 -*- |
5 | |
6 | Gem::Specification.new do |s| |
7 | s.name = %q{recaptcha} |
8 | s.version = "0.3.2" |
9 | |
10 | s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= |
11 | s.authors = ["Jason L. Perry"] |
12 | s.date = %q{2010-12-20} |
13 | s.description = %q{This plugin adds helpers for the reCAPTCHA API } |
14 | s.email = %q{jasper@ambethia.com} |
15 | s.extra_rdoc_files = [ |
16 | "LICENSE", |
17 | "README.rdoc" |
18 | ] |
19 | s.files = [ |
20 | "CHANGELOG", |
21 | "LICENSE", |
22 | "README.rdoc", |
23 | "Rakefile", |
24 | "VERSION", |
25 | "init.rb", |
26 | "lib/recaptcha.rb", |
27 | "lib/recaptcha/client_helper.rb", |
28 | "lib/recaptcha/configuration.rb", |
29 | "lib/recaptcha/merb.rb", |
30 | "lib/recaptcha/rails.rb", |
31 | "lib/recaptcha/verify.rb", |
32 | "recaptcha.gemspec", |
33 | "tasks/recaptcha_tasks.rake", |
34 | "test/recaptcha_test.rb", |
35 | "test/verify_recaptcha_test.rb" |
36 | ] |
37 | s.homepage = %q{http://ambethia.com/recaptcha} |
38 | s.require_paths = ["lib"] |
39 | s.rubygems_version = %q{1.3.7} |
40 | s.summary = %q{Helpers for the reCAPTCHA API} |
41 | s.test_files = [ |
42 | "test/recaptcha_test.rb", |
43 | "test/verify_recaptcha_test.rb" |
44 | ] |
45 | |
46 | if s.respond_to? :specification_version then |
47 | current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION |
48 | s.specification_version = 3 |
49 | |
50 | if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then |
51 | s.add_development_dependency(%q<mocha>, [">= 0"]) |
52 | s.add_development_dependency(%q<activesupport>, [">= 0"]) |
53 | s.add_dependency(%q<i18n>, [">= 0"]) |
54 | else |
55 | s.add_dependency(%q<mocha>, [">= 0"]) |
56 | s.add_dependency(%q<activesupport>, [">= 0"]) |
57 | s.add_dependency(%q<i18n>, [">= 0"]) |
58 | end |
59 | else |
60 | s.add_dependency(%q<mocha>, [">= 0"]) |
61 | s.add_dependency(%q<activesupport>, [">= 0"]) |
62 | s.add_dependency(%q<i18n>, [">= 0"]) |
63 | end |
64 | end |
65 |