mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-11-16 14:15:04 -05:00
13 lines
314 B
Ruby
13 lines
314 B
Ruby
$:.unshift File.dirname(__FILE__) # For use/testing when no gem is installed
|
|
|
|
require "octopress/core_ext"
|
|
require "octopress/configuration"
|
|
|
|
module Octopress
|
|
|
|
# Static: Fetches the Octopress environment
|
|
def self.env
|
|
ENV["OCTOPRESS_ENV"] || Configuration.read_config("defaults/jekyll.yml")[:env]
|
|
end
|
|
end
|