jquery_inputmask_rails 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +5 -0
- data/Gemfile +4 -0
- data/README.md +28 -0
- data/Rakefile +1 -0
- data/jquery_inputmask_rails.gemspec +18 -0
- data/lib/jquery_inputmask_rails/engine.rb +4 -0
- data/lib/jquery_inputmask_rails/version.rb +3 -0
- data/lib/jquery_inputmask_rails.rb +5 -0
- data/vendor/assets/javascripts/jquery.inputmask.js +2405 -0
- metadata +54 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: aa3a6a66a814e486123e6f43265fbc3bcca6579b
|
4
|
+
data.tar.gz: 8583896f956ad60da93be29719cf8541066be811
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 17161a61a9ce288fac384f376305b417a8047042f35d52656f87eb6560116e02f9c9e9602443a1595a6365caf1063360978fe3b9bc689933e2b3c4295c663e22
|
7
|
+
data.tar.gz: 1e18147534203e7a318c94cb3d5cea57f1c69732f3ca569a350727c457b016c2916ea531673a662417ee6128303edb3ec766b4adef15957e5b8fe136989a39d3
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/README.md
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
# JqueryInputmaskRails
|
2
|
+
|
3
|
+
## Installation
|
4
|
+
|
5
|
+
Add this line to your application's Gemfile:
|
6
|
+
|
7
|
+
gem 'jquery_inputmask_rails'
|
8
|
+
|
9
|
+
And then execute:
|
10
|
+
|
11
|
+
$ bundle
|
12
|
+
|
13
|
+
Add the following to your `app/assets/javascripts/application.js`:
|
14
|
+
|
15
|
+
//= require jquery.inputmask
|
16
|
+
|
17
|
+
## Plugin Documentation
|
18
|
+
Current version: 5.0.0-beta.184
|
19
|
+
|
20
|
+
https://github.com/RobinHerbots/jquery.inputmask
|
21
|
+
|
22
|
+
## Contributing
|
23
|
+
|
24
|
+
1. Fork it
|
25
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
26
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
27
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
28
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require 'bundler/gem_tasks'
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
require "jquery_inputmask_rails/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |s|
|
6
|
+
s.name = "jquery_inputmask_rails"
|
7
|
+
s.version = JqueryInputmaskRails::VERSION
|
8
|
+
s.authors = ["Edgar Ji"]
|
9
|
+
s.email = ["zorro.ej@gmail.com"]
|
10
|
+
s.homepage = "http://github.com/ej2005/jquery_inputmask_rails"
|
11
|
+
s.summary = %q{Integrate the jQuery InputMask plugin into the Rails asset pipeline}
|
12
|
+
s.description = %q{An inputmask helps the user with the input by ensuring a predefined format. This can be usefull for dates, numerics, phone numbers...}
|
13
|
+
|
14
|
+
s.files = `git ls-files`.split("\n")
|
15
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
16
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
17
|
+
s.require_paths = ["lib"]
|
18
|
+
end
|