bibsonomy-jekyll 0.2.4 → 0.2.5
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/lib/bibsonomy-jekyll.rb +2 -2
- data/lib/version.rb +1 -1
- data/spec/fixtures/page_other_style.md +1 -1
- data/spec/spec_helper.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f124868f854e218c2f2f2fdc7ef9d4ae07f2bd9ea00effa0486fbb1f03ca4246
|
|
4
|
+
data.tar.gz: d64a9ecee82384fd16dc4defe06772d1aace8f6664e025cc5c89475e447ebcd3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e41882bb229e7dac6486d2136619ebb540e92205e0ddadb51c9ef0ff379ebea28454e0f3849a72fa7aa60281d78d2a0f0aab8d850732ab6d7e2168f9f5ab0020
|
|
7
|
+
data.tar.gz: acba91e497107ec8655d815349cc99fd5d6f5c324a5291b123c55644e4d2981c7f36b51ac0f46c1bb3890c6fb2b45e7235790b938b8a92f72acc50c01a046d2d
|
data/lib/bibsonomy-jekyll.rb
CHANGED
|
@@ -82,9 +82,9 @@ module Jekyll
|
|
|
82
82
|
# work on a copy of the configuration and override using opts
|
|
83
83
|
config = config.clone.merge(opts)
|
|
84
84
|
# set values from config in CSL
|
|
85
|
-
(CONFIG_OPTS & config.keys()).each do |key
|
|
85
|
+
(CONFIG_OPTS & config.keys()).each do |key|
|
|
86
86
|
# TODO: access attribute by string → ok or hack?
|
|
87
|
-
csl.instance_variable_set('@' + key,
|
|
87
|
+
csl.instance_variable_set('@' + key, config[key])
|
|
88
88
|
end
|
|
89
89
|
|
|
90
90
|
# HACK: convert the only (so far) boolean variable to boolean
|
data/lib/version.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
|
@@ -40,7 +40,7 @@ RSpec.configure do |config|
|
|
|
40
40
|
site_config = Jekyll.configuration(CONFIG_DEFAULTS.merge(options))
|
|
41
41
|
# get api key and user name from environment (configured via
|
|
42
42
|
# .travis.yml on Travis or manually when testing locally)
|
|
43
|
-
site_config["bibsonomy"] = {"user" => ENV['BIBSONOMY_USER_NAME'], "apikey" => ENV['BIBSONOMY_API_KEY'], "style" => "springer-lecture-notes-in-computer-science"
|
|
43
|
+
site_config["bibsonomy"] = {"user" => ENV['BIBSONOMY_USER_NAME'], "apikey" => ENV['BIBSONOMY_API_KEY'], "style" => "springer-lecture-notes-in-computer-science"}
|
|
44
44
|
Jekyll::Site.new(site_config)
|
|
45
45
|
end
|
|
46
46
|
|