forked from markets/invisible_captcha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
invisible_captcha.gemspec
24 lines (20 loc) · 1.03 KB
/
invisible_captcha.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
require './lib/invisible_captcha/version'
Gem::Specification.new do |spec|
spec.name = "invisible_captcha"
spec.version = InvisibleCaptcha::VERSION
spec.authors = ["Marc Anguera Insa"]
spec.email = ["[email protected]"]
spec.description = "Unobtrusive, flexible and simple spam protection for Rails applications using honeypot strategy for better user experience."
spec.summary = "Simple honeypot protection for RoR apps"
spec.homepage = "https://github.com/markets/invisible_captcha"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_dependency 'rails', '>= 3.2.0'
# spec.add_development_dependency 'rspec-rails', '~> 3.1'
# spec.add_development_dependency 'appraisal'
# spec.add_development_dependency 'test-unit', '~> 3.0'
# spec.add_development_dependency 'byebug'
end