datejs-rails 2.0.0 → 2.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.rbenv-version +1 -0
- data/changelog.md +4 -1
- data/datejs-rails.gemspec +1 -1
- data/vendor/assets/javascripts/date/extras.js +2 -2
- metadata +5 -4
data/.rbenv-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
1.8.7-p357
|
data/changelog.md
CHANGED
@@ -1,5 +1,8 @@
|
|
1
|
+
### Version 2.0.1 (2012-12-18)
|
2
|
+
* Pulled in character encoding fix in extras.js (hat tip @JamesCropcho
|
3
|
+
|
1
4
|
### Version 2.0.0 (2012-12-16)
|
2
|
-
* Pulled in CowboyD's
|
5
|
+
* Pulled in @CowboyD's fork
|
3
6
|
* Now using DateJS as maintained by Eric Lindvall.
|
4
7
|
|
5
8
|
### Version 1.1.0 (2012-01-11)
|
data/datejs-rails.gemspec
CHANGED
@@ -2,7 +2,7 @@ $:.push File.expand_path("../lib", __FILE__)
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = "datejs-rails"
|
5
|
-
s.version = "2.0.
|
5
|
+
s.version = "2.0.1"
|
6
6
|
s.authors = ["Derek Prior"]
|
7
7
|
s.homepage = "https://github.com/derekprior/datejs-rails"
|
8
8
|
s.summary = "The datejs Javascript library ready to play with Rails"
|
@@ -84,7 +84,7 @@
|
|
84
84
|
* Converts the value of the current Date object to its equivalent string representation using a PHP/Unix style of date format specifiers.
|
85
85
|
*
|
86
86
|
* The following descriptions are from http://www.php.net/strftime and http://www.php.net/manual/en/function.date.php.
|
87
|
-
* Copyright
|
87
|
+
* Copyright (c) 2001-2008 The PHP Group
|
88
88
|
*
|
89
89
|
* Format Specifiers
|
90
90
|
<pre>
|
@@ -329,4 +329,4 @@
|
|
329
329
|
if (!$P.format) {
|
330
330
|
$P.format = $P.$format;
|
331
331
|
}
|
332
|
-
}());
|
332
|
+
}());
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: datejs-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 13
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 2
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 2.0.
|
9
|
+
- 1
|
10
|
+
version: 2.0.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Derek Prior
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2012-12-
|
18
|
+
date: 2012-12-18 00:00:00 -05:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -43,6 +43,7 @@ extra_rdoc_files: []
|
|
43
43
|
|
44
44
|
files:
|
45
45
|
- .gitignore
|
46
|
+
- .rbenv-version
|
46
47
|
- MIT-LICENSE
|
47
48
|
- README.md
|
48
49
|
- Rakefile
|