Sha256: 7593b4373a0d003247a792ae7a7d659702d28c7a9d29042d5b4a9c32b321706b
Contents?: true
Size: 1.52 KB
Versions: 1
Compression:
Stored size: 1.52 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "acts_as_textcaptcha/version" Gem::Specification.new do |s| s.name = "acts_as_textcaptcha" s.version = ActsAsTextcaptcha::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Matthew Hutchinson"] s.email = ["matt@hiddenloop.com"] s.homepage = "http://github.com/matthutchinson/acts_as_textcaptcha" s.summary = %q{Spam protection for your models via logic questions and the textcaptcha.com API} s.description = %q{Simple question/answer based spam protection for your Rails models. You can define your own logic questions and/or fetch questions from the textcaptcha.com API. The questions involve human logic and are tough for spam bots to crack. For more reasons on why logic questions are a good idea visit; http://textcaptcha.com/why} s.extra_rdoc_files = ['README.rdoc', 'LICENSE'] s.signing_key = '/Users/matt/.gem/gem-private_key.pem' s.cert_chain = ['gem-public_cert.pem'] s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test}/*`.split("\n") s.require_paths = ["lib"] s.add_dependency('bcrypt-ruby', '~> 3.0.1') s.add_development_dependency('rails') s.add_development_dependency('bundler') s.add_development_dependency('minitest') s.add_development_dependency('simplecov') s.add_development_dependency('rdoc') s.add_development_dependency('sqlite3') s.add_development_dependency('fakeweb') s.add_development_dependency('strong_parameters') end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
acts_as_textcaptcha-3.0.9 | acts_as_textcaptcha.gemspec |