jekyll-date-format 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README.md +3 -0
- data/jekyll-date-format.gemspec +8 -3
- data/lib/jekyll-date-format/version.rb +1 -1
- metadata +19 -20
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 889011f06901fee6d9cc8754d2134f4a50aeaf3c
|
4
|
+
data.tar.gz: 1778bd8388c4a983e43da0f8896f3e327d77fc2e
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 9cf646407ff7d68fea551b7f0bffbd00341d98d61d3b2c7febc2567527425bdaa3f8e9c8d29ea8b8625fcd154149e0aaf338b4077c4145a9cada8dfde21033e5
|
7
|
+
data.tar.gz: 78ba9ac90e060c496afae7e42530c3e522b3c3fdbd1849d61314ccac9f68c962b0f962c7cc0bb8ac6f336b6a3db01b9cec499f3fc9500fa55c5a7437a2a152f8
|
data/README.md
CHANGED
@@ -16,8 +16,11 @@ Or install it yourself as:
|
|
16
16
|
|
17
17
|
$ gem install jekyll-date-format
|
18
18
|
|
19
|
+
Next add a ruby file to your Jekyll plugins directory and add `require 'jekyll-date-format'` to the top. That's it.
|
20
|
+
|
19
21
|
## Usage
|
20
22
|
|
23
|
+
|
21
24
|
In your Jekyll configuration (usually the _config.yml) you can set the date
|
22
25
|
|
23
26
|
| Configuration | Description | Default |
|
data/jekyll-date-format.gemspec
CHANGED
@@ -8,12 +8,17 @@ Gem::Specification.new do |gem|
|
|
8
8
|
gem.version = Jekyll::DateFormat::VERSION
|
9
9
|
gem.authors = ["Brandon Mathis"]
|
10
10
|
gem.email = ["brandon@imathis.com"]
|
11
|
-
gem.description = %q{Automatically adds variables with nicely formated dates and time tags to Jekyll posts and pages.}
|
12
|
-
gem.summary = %q{Automatically adds variables with nicely formated dates and time tags to Jekyll posts and pages.}
|
13
|
-
gem.homepage = "https://github.com/octopress/
|
11
|
+
gem.description = %q{Renamed to octopress-date-format. - Automatically adds variables with nicely formated dates and time tags to Jekyll posts and pages.}
|
12
|
+
gem.summary = %q{Renamed to octopress-date-format. - Automatically adds variables with nicely formated dates and time tags to Jekyll posts and pages.}
|
13
|
+
gem.homepage = "https://github.com/octopress/date-format"
|
14
14
|
gem.license = "MIT"
|
15
15
|
|
16
16
|
gem.add_runtime_dependency 'jekyll', '>= 1.0.0'
|
17
|
+
gem.post_install_message = <<-MESSAGE
|
18
|
+
! The jekyll-date-format gem has been deprecated and has been replaced by octopress-date-format.
|
19
|
+
! See: https://rubygems.org/gems/octopress-date-format
|
20
|
+
! And: https://github.com/octopress/date-format
|
21
|
+
MESSAGE
|
17
22
|
|
18
23
|
gem.files = `git ls-files`.split($/)
|
19
24
|
gem.require_paths = ["lib"]
|
metadata
CHANGED
@@ -1,41 +1,38 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-date-format
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
5
|
-
prerelease:
|
4
|
+
version: 1.0.1
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Brandon Mathis
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2014-08-03 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: jekyll
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
16
|
requirements:
|
19
|
-
- -
|
17
|
+
- - ">="
|
20
18
|
- !ruby/object:Gem::Version
|
21
19
|
version: 1.0.0
|
22
20
|
type: :runtime
|
23
21
|
prerelease: false
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
23
|
requirements:
|
27
|
-
- -
|
24
|
+
- - ">="
|
28
25
|
- !ruby/object:Gem::Version
|
29
26
|
version: 1.0.0
|
30
|
-
description: Automatically adds variables with
|
31
|
-
to Jekyll posts and pages.
|
27
|
+
description: Renamed to octopress-date-format. - Automatically adds variables with
|
28
|
+
nicely formated dates and time tags to Jekyll posts and pages.
|
32
29
|
email:
|
33
30
|
- brandon@imathis.com
|
34
31
|
executables: []
|
35
32
|
extensions: []
|
36
33
|
extra_rdoc_files: []
|
37
34
|
files:
|
38
|
-
- .gitignore
|
35
|
+
- ".gitignore"
|
39
36
|
- Gemfile
|
40
37
|
- LICENSE.txt
|
41
38
|
- README.md
|
@@ -53,30 +50,32 @@ files:
|
|
53
50
|
- test/css/main.css
|
54
51
|
- test/css/syntax.css
|
55
52
|
- test/index.html
|
56
|
-
homepage: https://github.com/octopress/
|
53
|
+
homepage: https://github.com/octopress/date-format
|
57
54
|
licenses:
|
58
55
|
- MIT
|
59
|
-
|
56
|
+
metadata: {}
|
57
|
+
post_install_message: |
|
58
|
+
! The jekyll-date-format gem has been deprecated and has been replaced by octopress-date-format.
|
59
|
+
! See: https://rubygems.org/gems/octopress-date-format
|
60
|
+
! And: https://github.com/octopress/date-format
|
60
61
|
rdoc_options: []
|
61
62
|
require_paths:
|
62
63
|
- lib
|
63
64
|
required_ruby_version: !ruby/object:Gem::Requirement
|
64
|
-
none: false
|
65
65
|
requirements:
|
66
|
-
- -
|
66
|
+
- - ">="
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
69
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
70
|
-
none: false
|
71
70
|
requirements:
|
72
|
-
- -
|
71
|
+
- - ">="
|
73
72
|
- !ruby/object:Gem::Version
|
74
73
|
version: '0'
|
75
74
|
requirements: []
|
76
75
|
rubyforge_project:
|
77
|
-
rubygems_version:
|
76
|
+
rubygems_version: 2.2.2
|
78
77
|
signing_key:
|
79
|
-
specification_version:
|
80
|
-
summary: Automatically adds variables with nicely
|
81
|
-
Jekyll posts and pages.
|
78
|
+
specification_version: 4
|
79
|
+
summary: Renamed to octopress-date-format. - Automatically adds variables with nicely
|
80
|
+
formated dates and time tags to Jekyll posts and pages.
|
82
81
|
test_files: []
|