Sha256: 5d24f53c852a5252bddd141913a664f9b97c03af968f193e241d92c39f20e44d

Contents?: true

Size: 493 Bytes

Versions: 3

Compression:

Stored size: 493 Bytes

Contents

require 'liquid'
require 'octopress-pygments'
require 'open-uri'
require 'json'

$:.unshift File.dirname(__FILE__)
$LOAD_PATH.unshift(File.dirname(__FILE__))

module Octopress
  module Gist
    autoload :Cache,       'octopress-gist/cache'
    autoload :Tag,         'octopress-gist/gist'
    autoload :NoCacheTag,  'octopress-gist/gist-no-cache'
  end
end

Liquid::Template.register_tag('gist', Octopress::Gist::Tag)
Liquid::Template.register_tag('gistnocache', Octopress::Gist::NoCacheTag)

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
octopress-gist-1.0.2 lib/octopress-gist.rb
octopress-gist-1.0.1 lib/octopress-gist.rb
octopress-gist-1.0.0 lib/octopress-gist.rb