2015-10-26 06:09:39 +00:00
|
|
|
lib = File.expand_path('../lib/', __FILE__)
|
2016-05-25 03:07:26 +00:00
|
|
|
$LOAD_PATH.unshift lib unless $LOAD_PATH.include?(lib)
|
2015-10-26 06:09:39 +00:00
|
|
|
|
2016-05-25 03:07:26 +00:00
|
|
|
require 'rucaptcha/version'
|
2015-10-26 06:09:39 +00:00
|
|
|
|
|
|
|
Gem::Specification.new do |s|
|
2016-09-01 05:07:59 +00:00
|
|
|
s.name = 'rucaptcha'
|
|
|
|
s.version = RuCaptcha::VERSION
|
|
|
|
s.authors = 'Jason Lee'
|
|
|
|
s.email = 'huacnlee@gmail.com'
|
|
|
|
s.files = Dir.glob('lib/**/*') + Dir.glob('app/**/*') + Dir.glob('config/**/*') + %w(README.md CHANGELOG.md)
|
|
|
|
s.homepage = 'https://github.com/huacnlee/rucaptcha'
|
|
|
|
s.require_paths = ['lib']
|
|
|
|
s.summary = 'This is a Captcha gem for Rails Application. It run ImageMagick command to draw Captcha image.'
|
|
|
|
s.license = "MIT"
|
2016-11-08 01:58:45 +00:00
|
|
|
s.required_ruby_version = ">= 2.0.0"
|
2016-06-22 03:05:30 +00:00
|
|
|
|
|
|
|
s.add_dependency 'railties', '>= 3.2'
|
2015-10-26 06:09:39 +00:00
|
|
|
end
|