jekyll-exiftag 0.0.2 → 0.0.3
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 +7 -0
- data/lib/jekyll-exiftag.rb +5 -2
- metadata +14 -13
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: ca8f546fce75ba487d52a210ad9e22180cb38965
|
|
4
|
+
data.tar.gz: 0b876f2296153000c071b7ff1adfb6287bfe7125
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 985ddf22a624fcb12b813c85283a91cd9a56b45d5b1a2b57e7299a3743fa440313aebd1ebb886afc1520864de2104b414ae34954a548cff73c58f139f42fdace
|
|
7
|
+
data.tar.gz: a83f5148cae0fc06fa5f733dc45fb00fc08b2038e4ea923ccf27b53c4dd6665c64c936284b5236ef9adb2b7f5c9e453440c5dd05ecdaecaa7858185c4c372b4c
|
data/lib/jekyll-exiftag.rb
CHANGED
|
@@ -34,8 +34,11 @@ module Jekyll
|
|
|
34
34
|
end
|
|
35
35
|
|
|
36
36
|
def render(context)
|
|
37
|
-
|
|
38
|
-
|
|
37
|
+
sources = Array.new()
|
|
38
|
+
if context.registers[:site].config['exiftag']['sources']
|
|
39
|
+
sources.unshift(*context.registers[:site].config['exiftag']['sources'])
|
|
40
|
+
end
|
|
41
|
+
|
|
39
42
|
# first param is the exif tag
|
|
40
43
|
tag = @args[0]
|
|
41
44
|
|
metadata
CHANGED
|
@@ -1,27 +1,29 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-exiftag
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
5
|
-
prerelease:
|
|
4
|
+
version: 0.0.3
|
|
6
5
|
platform: ruby
|
|
7
6
|
authors:
|
|
8
7
|
- Beni Buess
|
|
9
8
|
autorequire:
|
|
10
9
|
bindir: bin
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date:
|
|
11
|
+
date: 2015-06-09 00:00:00.000000000 Z
|
|
13
12
|
dependencies:
|
|
14
13
|
- !ruby/object:Gem::Dependency
|
|
15
14
|
name: exifr
|
|
16
|
-
requirement:
|
|
17
|
-
none: false
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
18
16
|
requirements:
|
|
19
|
-
- -
|
|
17
|
+
- - '>='
|
|
20
18
|
- !ruby/object:Gem::Version
|
|
21
19
|
version: '0'
|
|
22
20
|
type: :runtime
|
|
23
21
|
prerelease: false
|
|
24
|
-
version_requirements:
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - '>='
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0'
|
|
25
27
|
description: jekyll-exiftag is a LiquidTag Extension for Jekyll to get Exif data from
|
|
26
28
|
images
|
|
27
29
|
email: beni@benel.net
|
|
@@ -32,26 +34,25 @@ files:
|
|
|
32
34
|
- lib/jekyll-exiftag.rb
|
|
33
35
|
homepage: http://github.com/benib/jekyll-exiftag
|
|
34
36
|
licenses: []
|
|
37
|
+
metadata: {}
|
|
35
38
|
post_install_message:
|
|
36
39
|
rdoc_options: []
|
|
37
40
|
require_paths:
|
|
38
41
|
- lib
|
|
39
42
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
40
|
-
none: false
|
|
41
43
|
requirements:
|
|
42
|
-
- -
|
|
44
|
+
- - '>='
|
|
43
45
|
- !ruby/object:Gem::Version
|
|
44
46
|
version: '0'
|
|
45
47
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
46
|
-
none: false
|
|
47
48
|
requirements:
|
|
48
|
-
- -
|
|
49
|
+
- - '>='
|
|
49
50
|
- !ruby/object:Gem::Version
|
|
50
51
|
version: '0'
|
|
51
52
|
requirements: []
|
|
52
53
|
rubyforge_project:
|
|
53
|
-
rubygems_version:
|
|
54
|
+
rubygems_version: 2.0.14
|
|
54
55
|
signing_key:
|
|
55
|
-
specification_version:
|
|
56
|
+
specification_version: 4
|
|
56
57
|
summary: jekyll-exiftag provides exif data in jekyll sites
|
|
57
58
|
test_files: []
|