mirror of
https://github.com/jcreek/AssessmentAnalyser.git
synced 2026-07-13 10:53:47 +00:00
10 lines
187 B
Ruby
Executable File
10 lines
187 B
Ruby
Executable File
require 'yaml'
|
|
|
|
module Bridge
|
|
class Generator < Jekyll::Generator
|
|
def generate(site)
|
|
site.data["configBridge"] = YAML.load_file("./grunt/configBridge.json")
|
|
end
|
|
end
|
|
end
|