jquery-inputmask-rails 0.0.3 → 2.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +31 -0
- data/lib/jquery-inputmask-rails/version.rb +1 -1
- data/vendor/assets/.DS_Store +0 -0
- metadata +5 -4
data/README.md
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
# Jquery::Inputmask::Rails
|
2
|
+
|
3
|
+
|
4
|
+
## Installation
|
5
|
+
|
6
|
+
Add this line to your application's Gemfile:
|
7
|
+
|
8
|
+
gem 'jquery-inputmask-rails'
|
9
|
+
|
10
|
+
And then execute:
|
11
|
+
|
12
|
+
$ bundle
|
13
|
+
|
14
|
+
Add the following to your `app/assets/javascripts/application.js`:
|
15
|
+
|
16
|
+
//= require jquery.inputmask
|
17
|
+
//= require jquery.inputmask.extensions
|
18
|
+
//= require jquery.inputmask.numeric.extensions
|
19
|
+
//= require jquery.inputmask.date.extensions
|
20
|
+
|
21
|
+
## Plugin Documentation
|
22
|
+
|
23
|
+
https://github.com/RobinHerbots/jquery.inputmask
|
24
|
+
|
25
|
+
## Contributing
|
26
|
+
|
27
|
+
1. Fork it
|
28
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
29
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
30
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
31
|
+
5. Create new Pull Request
|
data/vendor/assets/.DS_Store
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jquery-inputmask-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 13
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
|
+
- 2
|
7
8
|
- 0
|
8
|
-
-
|
9
|
-
|
10
|
-
version: 0.0.3
|
9
|
+
- 1
|
10
|
+
version: 2.0.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Marcos Nogueira
|
@@ -31,6 +31,7 @@ files:
|
|
31
31
|
- .DS_Store
|
32
32
|
- .gitignore
|
33
33
|
- Gemfile
|
34
|
+
- README.md
|
34
35
|
- Rakefile
|
35
36
|
- jquery-inputmask-rails.gemspec
|
36
37
|
- lib/jquery-inputmask-rails.rb
|