Sha256: 7866620094449e9a4e85f3445b4b0424a508a03494c9ffbcef9af697f430a80b
Contents?: true
Size: 927 Bytes
Versions: 3
Compression:
Stored size: 927 Bytes
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'really_simple_captcha/version' Gem::Specification.new do |gem| gem.name = "really_simple_captcha" gem.version = ReallySimpleCaptcha::VERSION gem.authors = ["Guillaume DOTT"] gem.email = ["guillaume+github@dott.fr"] gem.summary = %q{A really simple captcha gem} gem.description = %q{Simple gem to add captcha or negative captcha to your Rails 3 application} gem.homepage = "https://github.com/lafourmi/really_simple_captcha" gem.files = `git ls-files`.split($/) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.require_paths = ["lib"] gem.add_runtime_dependency 'rails', '>= 3.0.0' gem.add_runtime_dependency 'rmagick' end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
really_simple_captcha-0.1.2 | really_simple_captcha.gemspec |
really_simple_captcha-0.1.1 | really_simple_captcha.gemspec |
really_simple_captcha-0.1.0 | really_simple_captcha.gemspec |