forked from matthutchinson/acts_as_textcaptcha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathacts_as_textcaptcha.gemspec
36 lines (30 loc) · 1.53 KB
/
acts_as_textcaptcha.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# -*- 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 = ["Hamed Ramezanian", "Matthew Hutchinson"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "http://github.com/jnaqsh/acts_as_textcaptcha"
s.summary = %q{Spam protection for your models via logic questions and the textcaptcha.ir 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.ir 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.ir/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"]
s.add_dependency('bcrypt-ruby', '~> 3.1.2')
s.add_development_dependency('rails', '~> 4.0.1')
s.add_development_dependency('bundler')
s.add_development_dependency('minitest', '~> 4.7')
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