forked from pludoni/simple-captcha
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsimple_captcha.gemspec
24 lines (20 loc) · 932 Bytes
/
simple_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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "simple_captcha/version"
Gem::Specification.new do |s|
s.name = "simple_captcha"
s.version = SimpleCaptcha::VERSION.dup
s.platform = Gem::Platform::RUBY
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']
s.email = "[email protected]"
s.homepage = "http://github.com/pludoni/simple-captcha"
s.files = Dir["{lib}/**/*"] + ["Rakefile", "README.md"]
s.extra_rdoc_files = ["README.md"]
s.require_paths = ["lib"]
s.add_dependency 'rails', '>= 3.1'
s.add_development_dependency "sqlite3"
s.add_development_dependency "capybara-mechanize"
s.add_development_dependency "pry"
end