middleman-vcs-time 0.0.1 → 0.0.2
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 +4 -4
- data/.travis.yml +9 -0
- data/Gemfile +2 -0
- data/README.md +7 -0
- data/fixtures/git-app/dotgit/branches/.gitkeep +0 -0
- data/fixtures/git-app/dotgit/refs/heads/.gitkeep +0 -0
- data/fixtures/git-app/dotgit/refs/tags/.gitkeep +0 -0
- data/lib/middleman-vcs-time/systems/fallback.rb +3 -1
- data/lib/middleman-vcs-time/systems/git.rb +4 -1
- data/middleman-vcs-time.gemspec +1 -1
- metadata +9 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c3c57d4010d8e3812669ada2d2c441090c50337d
|
|
4
|
+
data.tar.gz: 546359e518647b00920466f4fa2a521320a061bf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b6655ff092f0767d93903fbaa0fd96486e408e8519869f68a3e9b138c6df363d1a3ff5cf81a59bf28d98567137aa7022e029bab2c54b22080297a0d60a4045ad
|
|
7
|
+
data.tar.gz: 36067bc635df446d34becf91858b436081f5e6069c9b07e3b485da75be50d3b90542f521716082217580f8090f6c14b566fbb6c7a5f624b129e14aeb029364e4
|
data/.travis.yml
ADDED
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# middleman-vcs-time
|
|
2
2
|
|
|
3
|
+
[![Gem Version][gem-version-badge]][gem-version]
|
|
4
|
+
[![Build Status][build-status-badge]][build-status]
|
|
5
|
+
|
|
3
6
|
Provides means to look up the last-modified times of [Middleman][] sitemap
|
|
4
7
|
resources according to a version control system.
|
|
5
8
|
|
|
@@ -32,4 +35,8 @@ current_page.mtime # => 2014-01-20 17:31:50 -0800
|
|
|
32
35
|
```
|
|
33
36
|
|
|
34
37
|
|
|
38
|
+
[build-status]: https://travis-ci.org/AndrewKvalheim/middleman-vcs-time
|
|
39
|
+
[build-status-badge]: https://travis-ci.org/AndrewKvalheim/middleman-vcs-time.png?branch=master
|
|
40
|
+
[gem-version]: https://badge.fury.io/rb/middleman-vcs-time
|
|
41
|
+
[gem-version-badge]: https://badge.fury.io/rb/middleman-vcs-time.png
|
|
35
42
|
[middleman]: http://middlemanapp.com/
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/middleman-vcs-time.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: middleman-vcs-time
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andrew Kvalheim
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-02-
|
|
11
|
+
date: 2014-02-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: middleman-core
|
|
@@ -32,6 +32,7 @@ extensions: []
|
|
|
32
32
|
extra_rdoc_files: []
|
|
33
33
|
files:
|
|
34
34
|
- ".gitignore"
|
|
35
|
+
- ".travis.yml"
|
|
35
36
|
- Gemfile
|
|
36
37
|
- LICENSE.md
|
|
37
38
|
- README.md
|
|
@@ -44,6 +45,7 @@ files:
|
|
|
44
45
|
- fixtures/git-app/config.rb
|
|
45
46
|
- fixtures/git-app/dotgit/HEAD
|
|
46
47
|
- fixtures/git-app/dotgit/ORIG_HEAD
|
|
48
|
+
- fixtures/git-app/dotgit/branches/.gitkeep
|
|
47
49
|
- fixtures/git-app/dotgit/config
|
|
48
50
|
- fixtures/git-app/dotgit/description
|
|
49
51
|
- fixtures/git-app/dotgit/index
|
|
@@ -55,6 +57,8 @@ files:
|
|
|
55
57
|
- fixtures/git-app/dotgit/objects/pack/pack-bc8ae5eaa7a0c137a3db0e68dc4f537bab66f10e.idx
|
|
56
58
|
- fixtures/git-app/dotgit/objects/pack/pack-bc8ae5eaa7a0c137a3db0e68dc4f537bab66f10e.pack
|
|
57
59
|
- fixtures/git-app/dotgit/packed-refs
|
|
60
|
+
- fixtures/git-app/dotgit/refs/heads/.gitkeep
|
|
61
|
+
- fixtures/git-app/dotgit/refs/tags/.gitkeep
|
|
58
62
|
- fixtures/git-app/source/show-mtime.html.erb
|
|
59
63
|
- fixtures/git-app/source/show-mtime_moved.html.erb
|
|
60
64
|
- fixtures/git-app/source/show-mtime_untracked.html.erb
|
|
@@ -101,6 +105,7 @@ test_files:
|
|
|
101
105
|
- fixtures/git-app/config.rb
|
|
102
106
|
- fixtures/git-app/dotgit/HEAD
|
|
103
107
|
- fixtures/git-app/dotgit/ORIG_HEAD
|
|
108
|
+
- fixtures/git-app/dotgit/branches/.gitkeep
|
|
104
109
|
- fixtures/git-app/dotgit/config
|
|
105
110
|
- fixtures/git-app/dotgit/description
|
|
106
111
|
- fixtures/git-app/dotgit/index
|
|
@@ -112,6 +117,8 @@ test_files:
|
|
|
112
117
|
- fixtures/git-app/dotgit/objects/pack/pack-bc8ae5eaa7a0c137a3db0e68dc4f537bab66f10e.idx
|
|
113
118
|
- fixtures/git-app/dotgit/objects/pack/pack-bc8ae5eaa7a0c137a3db0e68dc4f537bab66f10e.pack
|
|
114
119
|
- fixtures/git-app/dotgit/packed-refs
|
|
120
|
+
- fixtures/git-app/dotgit/refs/heads/.gitkeep
|
|
121
|
+
- fixtures/git-app/dotgit/refs/tags/.gitkeep
|
|
115
122
|
- fixtures/git-app/source/show-mtime.html.erb
|
|
116
123
|
- fixtures/git-app/source/show-mtime_moved.html.erb
|
|
117
124
|
- fixtures/git-app/source/show-mtime_untracked.html.erb
|