Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for environments #361

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions lib/middleman-blog/commands/article.rb
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,13 @@ def self.source_root
aliases: "-t",
desc: "A list of comma-separated tags for the post"

class_option "environment",
desc: "The environment to generate article for",
default: ENV['MM_ENV'] || ENV['RACK_ENV'] || 'development',
type: :string

def article
env = options[:environment].to_s.to_sym

@content = options[:content] || ""
@date = options[ :date ] ? ::Time.zone.parse( options[ :date ] ) : Time.zone.now
Expand All @@ -75,6 +81,7 @@ def article

app = ::Middleman::Application.new do
config[ :mode ] = :config
config[ :environment ] = env
config[ :disable_sitemap ] = true
config[ :watcher_disable ] = true
config[ :exit_before_ready ] = true
Expand Down