Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bridge.rb « _plugins « docs - github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f2e606383f97290b97f5aa601ca2743fbbfc7221 (plain)
1
2
3
4
5
6
7
8
9
require 'yaml'

module Bridge
  class Generator < Jekyll::Generator
    def generate(site)
      site.data["configBridge"] = YAML.load_file("./grunt/configBridge.json")
    end
  end
end