mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-03-17 05:00:24 +00:00
10 lines
230 B
Ruby
10 lines
230 B
Ruby
require 'yaml'
|
|
|
|
module Bridge
|
|
class Generator < Jekyll::Generator
|
|
def generate(site)
|
|
path = File.join(site.source, "../grunt/configBridge.json")
|
|
site.data["configBridge"] = YAML.load_file(path)
|
|
end
|
|
end
|
|
end
|