jquery_inputmask_rails 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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
@@ -0,0 +1,5 @@
1
+ *.gem
2
+ .bundle
3
+ Gemfile.lock
4
+ pkg/*
5
+ .DS_Store
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in jquery_inputmask_rails.gemspec
4
+ gemspec
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
@@ -0,0 +1,4 @@
1
+ module InputmaskmoduleRails
2
+ class Engine < ::Rails::Engine
3
+ end
4
+ end
@@ -0,0 +1,3 @@
1
+ module JqueryInputmaskRails
2
+ VERSION = "1.0.0"
3
+ end
@@ -0,0 +1,5 @@
1
+ require "jquery_inputmask_rails/version"
2
+
3
+ module JqueryInputmaskRails
4
+ require "jquery_inputmask_rails/engine"
5
+ end