jquery-monthpicker-rails 0.0.2 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE.md +21 -0
- data/README.md +1 -1
- data/lib/jquery/monthpicker/rails/version.rb +1 -1
- data/vendor/assets/javascripts/jquery.ui.monthpicker.js +1 -4
- metadata +18 -12
- checksums.yaml +0 -7
data/LICENSE.md
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2014 Charles Maresh
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/README.md
CHANGED
@@ -9,7 +9,7 @@ This gem packages the [jQuery Monthpicker][] assets for the Rails 3.1+ asset pip
|
|
9
9
|
In your Gemfile, add:
|
10
10
|
|
11
11
|
```ruby
|
12
|
-
gem "jquery-monthpicker-rails", "~> 0.0
|
12
|
+
gem "jquery-monthpicker-rails", "~> 1.0.0"
|
13
13
|
```
|
14
14
|
|
15
15
|
Then require the javascript in your application.js
|
@@ -183,7 +183,6 @@
|
|
183
183
|
return;
|
184
184
|
this._attachments(input, inst);
|
185
185
|
input.addClass(this.markerClassName).keydown(this._doKeyDown).
|
186
|
-
keypress(this._doKeyPress).keyup(this._doKeyUp).
|
187
186
|
bind("setData.monthpicker", function(event, key, value) {
|
188
187
|
inst.settings[key] = value;
|
189
188
|
}).bind("getData.monthpicker", function(event, key) {
|
@@ -620,9 +619,7 @@
|
|
620
619
|
inst.trigger.remove();
|
621
620
|
$target.removeClass(this.markerClassName).
|
622
621
|
unbind("focus", this._showMonthpicker).
|
623
|
-
unbind("keydown", this._doKeyDown)
|
624
|
-
unbind("keypress", this._doKeyPress).
|
625
|
-
unbind("keyup", this._doKeyUp);
|
622
|
+
unbind("keydown", this._doKeyDown)
|
626
623
|
} else if (nodeName === "div" || nodeName === "span") {
|
627
624
|
$target.removeClass(this.markerClassName).empty();
|
628
625
|
}
|
metadata
CHANGED
@@ -1,41 +1,46 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jquery-monthpicker-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 1.0.0
|
5
|
+
prerelease:
|
5
6
|
platform: ruby
|
6
7
|
authors:
|
7
8
|
- Charles Maresh
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
date:
|
12
|
+
date: 2016-02-18 00:00:00.000000000 Z
|
12
13
|
dependencies:
|
13
14
|
- !ruby/object:Gem::Dependency
|
14
15
|
name: railties
|
15
16
|
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
16
18
|
requirements:
|
17
|
-
- - '>='
|
19
|
+
- - ! '>='
|
18
20
|
- !ruby/object:Gem::Version
|
19
21
|
version: 3.1.0
|
20
22
|
type: :runtime
|
21
23
|
prerelease: false
|
22
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
23
26
|
requirements:
|
24
|
-
- - '>='
|
27
|
+
- - ! '>='
|
25
28
|
- !ruby/object:Gem::Version
|
26
29
|
version: 3.1.0
|
27
30
|
- !ruby/object:Gem::Dependency
|
28
31
|
name: jquery-ui-rails
|
29
32
|
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
30
34
|
requirements:
|
31
|
-
- - '>='
|
35
|
+
- - ! '>='
|
32
36
|
- !ruby/object:Gem::Version
|
33
37
|
version: '3.0'
|
34
38
|
type: :runtime
|
35
39
|
prerelease: false
|
36
40
|
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
37
42
|
requirements:
|
38
|
-
- - '>='
|
43
|
+
- - ! '>='
|
39
44
|
- !ruby/object:Gem::Version
|
40
45
|
version: '3.0'
|
41
46
|
description: jQuery Monthpicker's JavaScript files packaged for the Rails 3.1+ asset
|
@@ -47,6 +52,7 @@ extensions: []
|
|
47
52
|
extra_rdoc_files: []
|
48
53
|
files:
|
49
54
|
- .gitignore
|
55
|
+
- LICENSE.md
|
50
56
|
- README.md
|
51
57
|
- jquery-monthpicker-rails.gemspec
|
52
58
|
- lib/jquery-monthpicker-rails.rb
|
@@ -57,26 +63,26 @@ files:
|
|
57
63
|
homepage: https://github.com/zorab47/jquery-monthpicker-rails
|
58
64
|
licenses:
|
59
65
|
- MIT
|
60
|
-
metadata: {}
|
61
66
|
post_install_message:
|
62
67
|
rdoc_options: []
|
63
68
|
require_paths:
|
64
69
|
- lib
|
65
70
|
required_ruby_version: !ruby/object:Gem::Requirement
|
71
|
+
none: false
|
66
72
|
requirements:
|
67
|
-
- - '>='
|
73
|
+
- - ! '>='
|
68
74
|
- !ruby/object:Gem::Version
|
69
75
|
version: '0'
|
70
76
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
77
|
+
none: false
|
71
78
|
requirements:
|
72
|
-
- - '>='
|
79
|
+
- - ! '>='
|
73
80
|
- !ruby/object:Gem::Version
|
74
81
|
version: 1.3.6
|
75
82
|
requirements: []
|
76
83
|
rubyforge_project:
|
77
|
-
rubygems_version:
|
84
|
+
rubygems_version: 1.8.23
|
78
85
|
signing_key:
|
79
|
-
specification_version:
|
86
|
+
specification_version: 3
|
80
87
|
summary: jQuery Monthpicker packaged for the Rails asset pipeline
|
81
88
|
test_files: []
|
82
|
-
has_rdoc:
|
checksums.yaml
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
---
|
2
|
-
SHA1:
|
3
|
-
metadata.gz: f18065e3578e39b4438bb5bf609a7f7a3e333f97
|
4
|
-
data.tar.gz: 32b629d78ca93df019fbf00c1f9d2b11133992cd
|
5
|
-
SHA512:
|
6
|
-
metadata.gz: 84809cb1be4db65ecee3798cefdabe2c3b35e2740b045ccd42a0c69ca02670ccb1fee255dab34ed3e7054b818af80199ccec35adf6c82cc5b520cdc2f171c8e5
|
7
|
-
data.tar.gz: 3ecaa35dbd45e56240e9319eaee39ffff89edf600ed448098d71e451d72c9043efed127c8aea642d0026616aed1d12606e20260a5ea06b93a1e94a209ecd2cc1
|