jquery-validation-rails 1.10.0 → 1.11.0
Sign up to get free protection for your applications and to get access to all the features.
data/README.md
CHANGED
@@ -13,14 +13,14 @@ And then execute:
|
|
13
13
|
|
14
14
|
Add `jquery-validation-rails` to your Gemfile and run `bundle install`:
|
15
15
|
|
16
|
-
|
16
|
+
gem "jquery-validation-rails"
|
17
17
|
|
18
18
|
### Include select2-rails javascript assets
|
19
19
|
|
20
20
|
Add the following to your `app/assets/javascripts/application.js`:
|
21
21
|
|
22
|
-
|
23
|
-
|
22
|
+
//= require jquery.validate
|
23
|
+
//= require jquery.validate.additional-methods
|
24
24
|
|
25
25
|
## Contributing
|
26
26
|
|
@@ -12,7 +12,7 @@ Gem::Specification.new do |gem|
|
|
12
12
|
gem.email = ["scriptfu@gmail.com"]
|
13
13
|
gem.description = %q{Integrate the jQuery Validation plugin into the Rails asset pipeline}
|
14
14
|
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.}
|
15
|
-
gem.homepage = ""
|
15
|
+
gem.homepage = "https://github.com/danryan/jquery-validation-rails"
|
16
16
|
|
17
17
|
gem.files = `git ls-files`.split($/)
|
18
18
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|