mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
d84c15f1d0
Specify configBridge as relative path to source for Jekyll
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
|