├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── jekyll-get-json.gemspec └── lib ├── jekyll-get-json.rb └── jekyll-get-json ├── converter.rb └── version.rb /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockfanning/jekyll-get-json/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-metadata 4 | *.gem 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockfanning/jekyll-get-json/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockfanning/jekyll-get-json/HEAD/README.md -------------------------------------------------------------------------------- /jekyll-get-json.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockfanning/jekyll-get-json/HEAD/jekyll-get-json.gemspec -------------------------------------------------------------------------------- /lib/jekyll-get-json.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockfanning/jekyll-get-json/HEAD/lib/jekyll-get-json.rb -------------------------------------------------------------------------------- /lib/jekyll-get-json/converter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockfanning/jekyll-get-json/HEAD/lib/jekyll-get-json/converter.rb -------------------------------------------------------------------------------- /lib/jekyll-get-json/version.rb: -------------------------------------------------------------------------------- 1 | module JekyllGetJson 2 | VERSION = "1.0.0".freeze 3 | end 4 | --------------------------------------------------------------------------------