mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-11 20:28:14 +03:00
10 lines
187 B
Ruby
10 lines
187 B
Ruby
|
require 'yaml'
|
||
|
|
||
|
module Bridge
|
||
|
class Generator < Jekyll::Generator
|
||
|
def generate(site)
|
||
|
site.data["configBridge"] = YAML.load_file("./grunt/configBridge.json")
|
||
|
end
|
||
|
end
|
||
|
end
|