android.moparisthebest.org/octopress/lib/octopress.rb

22 lines
680 B
Ruby
Raw Normal View History

module Octopress
2012-01-20 00:16:58 -05:00
# Answers the url of the plugins.yml file. Octopress will fetch the latest
# version of this file when plugins are installed. This allows for bumping
# plugin versions or adding new plugins without Gem releases.
#
# TODO: This needs to be finalized once we move the code out of the branch
# and into the octopress organization.
#
def Octopress.plugins_url
'https://raw.github.com/imathis/octopress/rubygemcli/octopress/plugins.yml'
end
def Octopress.template_root
File.join File.expand_path(File.dirname(__FILE__)), 'octopress', 'template'
end
end
require 'octopress/version'
2012-01-20 00:16:58 -05:00
require 'octopress/util'
require 'octopress/commands'