forked from phatworx/easy_captcha
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathkandr-easy_captcha.gemspec
37 lines (30 loc) · 1.07 KB
/
kandr-easy_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
25
26
27
28
29
30
31
32
33
34
35
36
37
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
require 'easy_captcha/version'
Gem::Specification.new do |s|
s.name = 'kandr-easy_captcha'
s.version = EasyCaptcha::VERSION
s.required_ruby_version = '>= 2.5.0'
s.required_rubygems_version = '>= 2.7.0'
s.authors = ['Marco Scholl', 'Alexander Dreher', 'Karl Wilbur']
s.date = '2011-09-15'
s.summary = 'CAPTCHA Plugin for Rails'
s.description = 'A simple CAPTCHA implementation for Rails 5+ based on RMagick.'
s.email = '[email protected]'
s.extra_rdoc_files = [
'LICENSE.txt',
'README.md'
]
s.files = `git ls-files -- README.md LICENSE.txt lib/* resources/*`.split("\n")
s.homepage = 'http://github.com/K-and-R/easy_captcha'
s.licenses = ['MIT']
s.rubygems_version = '3.1.4'
s.test_files = `git ls-files -- spec/*`.split("\n")
s.require_paths = ['lib']
s.add_dependency('rails', ['>= 5.0.0'])
if defined?(PLATFORM) && PLATFORM == 'java'
s.add_runtime_dependency('rmagick4j', '>= 0.3.7')
else
s.add_runtime_dependency('rmagick', '>= 2.13.1')
end
end