Sha256: 947d1d59a42a60ba1f487e3cb5853cccbf400965db5b617c578069d5d764302f
Contents?: true
Size: 1.63 KB
Versions: 2
Compression:
Stored size: 1.63 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.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"] # lock mime-types to pre 2.0 since we want to support 1.8.7/REE in tests s.add_development_dependency('mime-types', '~> 1.25.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') s.add_development_dependency('coveralls') s.add_development_dependency('pry') end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
acts_as_textcaptcha-4.1.0 | acts_as_textcaptcha.gemspec |
acts_as_textcaptcha-4.0.0 | acts_as_textcaptcha.gemspec |