forked from huacnlee/rucaptcha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rucaptcha.gemspec
25 lines (22 loc) · 1.06 KB
/
rucaptcha.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
lib = File.expand_path('../lib/', __FILE__)
$LOAD_PATH.unshift lib unless $LOAD_PATH.include?(lib)
require 'rucaptcha/version'
Gem::Specification.new do |s|
s.name = 'rucaptcha'
s.version = RuCaptcha::VERSION
s.authors = 'Jason Lee'
s.email = '[email protected]'
s.files = Dir.glob('lib/**/*.{rb}') +
Dir.glob("ext/**/*.{h,c,rb}") +
Dir.glob('app/**/*') +
Dir.glob('config/**/*') +
%w[README.md CHANGELOG.md]
s.homepage = 'https://github.com/huacnlee/rucaptcha'
s.require_paths = ['lib']
s.extensions = %w[ext/rucaptcha/extconf.rb]
s.summary = 'This is a Captcha gem for Rails Applications. It drawing captcha image with C code so it no dependencies.'
s.license = "MIT"
s.required_ruby_version = ">= 2.0.0"
s.add_dependency 'railties', '>= 3.2'
s.add_development_dependency 'rake-compiler', '~> 1'
end