forked from Azdaroth/simple-captcha
-
Notifications
You must be signed in to change notification settings - Fork 72
/
simple_captcha2.gemspec
26 lines (22 loc) · 1 KB
/
simple_captcha2.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "simple_captcha/version"
Gem::Specification.new do |s|
s.name = "simple_captcha2"
s.version = SimpleCaptcha::VERSION.dup
s.platform = Gem::Platform::RUBY
s.license = "MIT"
s.summary = "SimpleCaptcha is the simplest and a robust captcha plugin."
s.description = "SimpleCaptcha is available to be used with Rails 3 + 4 or above and also it provides the backward compatibility with previous versions of Rails."
s.authors = ["Pavlo Galeta", "Igor Galeta", 'Stefan Wienert', 'Konrad Mallok']
s.email = "stwienert@gmail.com"
s.homepage = "http://github.com/pludoni/simple-captcha"
s.files = Dir["{lib}/**/*"] + ["Rakefile", "README.md", "LICENSE.md"]
s.extra_rdoc_files = ["README.md"]
s.require_paths = ["lib"]
s.add_dependency 'rails', '>= 4.1'
s.add_development_dependency "sqlite3"
s.add_development_dependency "capybara-mechanize"
s.add_development_dependency "poltergeist"
s.add_development_dependency "pry"
end