├── .gitignore ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── jquery-validation-rails.gemspec ├── lib ├── jquery-validation-rails.rb └── jquery │ └── validation │ ├── rails.rb │ └── rails │ ├── engine.rb │ └── version.rb └── vendor └── assets └── javascripts ├── jquery.validate.additional-methods.js ├── jquery.validate.js └── jquery.validate.localization ├── messages_ar.js ├── messages_az.js ├── messages_bg.js ├── messages_bn_BD.js ├── messages_ca.js ├── messages_cs.js ├── messages_da.js ├── messages_de.js ├── messages_el.js ├── messages_es.js ├── messages_es_AR.js ├── messages_es_PE.js ├── messages_et.js ├── messages_eu.js ├── messages_fa.js ├── messages_fi.js ├── messages_fr.js ├── messages_ge.js ├── messages_gl.js ├── messages_he.js ├── messages_hr.js ├── messages_hu.js ├── messages_hy_AM.js ├── messages_id.js ├── messages_is.js ├── messages_it.js ├── messages_ja.js ├── messages_ka.js ├── messages_kk.js ├── messages_ko.js ├── messages_lt.js ├── messages_lv.js ├── messages_mk.js ├── messages_my.js ├── messages_nl.js ├── messages_no.js ├── messages_pl.js ├── messages_pt_BR.js ├── messages_pt_PT.js ├── messages_ro.js ├── messages_ru.js ├── messages_sd.js ├── messages_si.js ├── messages_sk.js ├── messages_sl.js ├── messages_sr.js ├── messages_sr_lat.js ├── messages_sv.js ├── messages_th.js ├── messages_tj.js ├── messages_tr.js ├── messages_uk.js ├── messages_ur.js ├── messages_vi.js ├── messages_zh.js ├── messages_zh_TW.js ├── methods_de.js ├── methods_es_CL.js ├── methods_fi.js ├── methods_it.js ├── methods_nl.js └── methods_pt.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /jquery-validation-rails.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/jquery-validation-rails.gemspec -------------------------------------------------------------------------------- /lib/jquery-validation-rails.rb: -------------------------------------------------------------------------------- 1 | require "jquery/validation/rails" 2 | -------------------------------------------------------------------------------- /lib/jquery/validation/rails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/lib/jquery/validation/rails.rb -------------------------------------------------------------------------------- /lib/jquery/validation/rails/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/lib/jquery/validation/rails/engine.rb -------------------------------------------------------------------------------- /lib/jquery/validation/rails/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/lib/jquery/validation/rails/version.rb -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.additional-methods.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_ar.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_az.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_bg.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_bn_BD.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_bn_BD.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_ca.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_cs.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_da.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_de.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_el.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_es.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_es_AR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_es_AR.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_es_PE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_es_PE.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_et.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_eu.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_fa.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_fi.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_fr.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_ge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_ge.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_gl.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_he.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_hr.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_hu.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_hy_AM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_hy_AM.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_id.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_is.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_it.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_ja.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_ka.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_kk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_kk.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_ko.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_lt.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_lv.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_mk.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_my.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_nl.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_no.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_pl.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_pt_BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_pt_BR.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_pt_PT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_pt_PT.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_ro.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_ru.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_sd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_sd.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_si.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_sk.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_sl.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_sr.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_sr_lat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_sr_lat.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_sv.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_th.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_tj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_tj.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_tr.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_uk.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_ur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_ur.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_vi.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_zh.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/messages_zh_TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/messages_zh_TW.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/methods_de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/methods_de.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/methods_es_CL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/methods_es_CL.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/methods_fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/methods_fi.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/methods_it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/methods_it.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/methods_nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/methods_nl.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.validate.localization/methods_pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meowsus/jquery-validation-rails/HEAD/vendor/assets/javascripts/jquery.validate.localization/methods_pt.js --------------------------------------------------------------------------------