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-05-25 03:07:26 +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'
|
2015-10-26 06:09:39 +00:00
|
|
|
s.require_paths = ['lib']
|
2016-05-25 03:07:26 +00:00
|
|
|
s.summary = 'This is a Captcha gem for Rails Application. It run ImageMagick command to draw Captcha image.'
|
2015-10-26 06:09:39 +00:00
|
|
|
end
|