Sha256: 713bb8a87f7f203a622f17a102c67f7c1303f86d451392203cd853a74d6b2a38
Contents?: true
Size: 1.51 KB
Versions: 3
Compression:
Stored size: 1.51 KB
Contents
#encoding: utf-8 # -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'jquery/validation/rails/version' Gem::Specification.new do |gem| gem.name = "jquery-validation-rails" gem.version = Jquery::Validation::Rails::VERSION gem.authors = ["Dan Ryan"] gem.email = ["dan@appliedawesome.com"] gem.description = %q{Integrate the jQuery Validation plugin into the Rails asset pipeline} gem.summary = %q{This jQuery plugin makes simple clientside form validation trivial, while offering lots of option for customization. That makes a good choice if you’re building something new from scratch, but also when you’re trying to integrate it into an existing application with lots of existing markup. The plugin comes bundled with a useful set of validation methods, including URL and email validation, while providing an API to write your own methods. All bundled methods come with default error messages in english and translations into 36 locales.} gem.homepage = "https://github.com/danryan/jquery-validation-rails" gem.license = "MIT" 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_dependency "thor", "~> 0.14" gem.add_dependency "railties", ">= 3.2", "< 5.0" gem.add_development_dependency "bundler", "~> 1.0" end
Version data entries
3 entries across 3 versions & 1 rubygems