2009-07-27 19:25:32 -04:00
|
|
|
#!/usr/bin/env ruby
|
|
|
|
|
|
|
|
# Require app
|
|
|
|
require 'templater'
|
2009-09-17 12:40:29 -04:00
|
|
|
require "yui/compressor"
|
|
|
|
require "sprockets"
|
|
|
|
|
2009-07-29 13:39:00 -04:00
|
|
|
MIDDLEMAN_BUILDER = true
|
2009-07-27 19:25:32 -04:00
|
|
|
require File.join(File.dirname(__FILE__), '..', 'lib', 'middleman')
|
2009-07-28 14:06:45 -04:00
|
|
|
require File.join(File.dirname(__FILE__), '..', 'vendor', 'rack-test', 'lib', 'rack', 'test')
|
2009-07-27 19:25:32 -04:00
|
|
|
|
|
|
|
module Generators
|
|
|
|
extend Templater::Manifold
|
|
|
|
desc "Build a staticmatic site"
|
|
|
|
|
|
|
|
class Builder < Templater::Generator
|
|
|
|
# Define source and desintation
|
|
|
|
def self.source_root; Dir.pwd; end
|
|
|
|
def destination_root; File.join(Dir.pwd, 'build'); end
|
|
|
|
|
2009-09-17 12:40:29 -04:00
|
|
|
# Override template to ask middleman for the correct extension to output
|
2009-07-27 19:25:32 -04:00
|
|
|
def self.template(name, *args, &block)
|
|
|
|
return if args.first.include?('layout')
|
2009-08-11 19:26:08 -04:00
|
|
|
args.first.split('/').each do |part|
|
|
|
|
return if part[0,1] == '_'
|
|
|
|
end
|
2009-07-28 14:06:45 -04:00
|
|
|
|
2009-07-27 19:25:32 -04:00
|
|
|
if (args[0] === args[1])
|
|
|
|
newext = case File.extname(args.first)
|
2009-07-28 16:44:56 -04:00
|
|
|
when '.haml', '.erb', '.mab', '.maruku'
|
2009-07-27 19:25:32 -04:00
|
|
|
'.html'
|
|
|
|
when '.sass'
|
|
|
|
'.css'
|
|
|
|
else
|
|
|
|
File.extname(args.first)
|
|
|
|
end
|
|
|
|
args[1] = args[0].gsub(File.extname(args.first), newext).gsub('views/', '')
|
|
|
|
end
|
2009-07-28 14:06:45 -04:00
|
|
|
|
2009-07-27 19:25:32 -04:00
|
|
|
super(name, *args, &block)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.file(name, *args, &block)
|
|
|
|
args[1] = args[0].gsub('views/', '') if (args[0] === args[1])
|
|
|
|
super(name, *args, &block)
|
|
|
|
end
|
|
|
|
|
|
|
|
public_files_glob = File.join(source_root, "public", '**/*')
|
|
|
|
Dir[public_files_glob].each do |action|
|
|
|
|
next if File.directory?(action)
|
|
|
|
action = action.sub("#{source_root}/", '')
|
2009-09-17 12:40:29 -04:00
|
|
|
template_sym = action.downcase.gsub(/[^a-z0-9]+/, '_').to_sym
|
|
|
|
|
|
|
|
if File.extname(action) == '.js' && !action.include?('min')
|
|
|
|
template(template_sym, action, action.gsub('public/', ''))
|
|
|
|
else
|
|
|
|
file(template_sym, action, action.gsub('public/', ''))
|
|
|
|
end
|
2009-07-27 19:25:32 -04:00
|
|
|
end
|
|
|
|
|
2009-08-12 13:00:06 -04:00
|
|
|
glob! "views", (Middleman.supported_formats << "sass")
|
2009-07-27 19:25:32 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
add :build, Builder
|
|
|
|
end
|
|
|
|
|
2009-09-17 12:40:29 -04:00
|
|
|
class BuildConfig
|
|
|
|
def self.render(source, destination)
|
|
|
|
renderer.render(source, destination)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.renderer
|
|
|
|
@@renderer ||= BuildRenderer
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.renderer=(val)
|
|
|
|
@@renderer = val
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-07-28 14:06:45 -04:00
|
|
|
# Monkey-patch to use a dynamic renderer
|
2009-07-27 19:25:32 -04:00
|
|
|
class Templater::Actions::Template
|
|
|
|
def render
|
2009-09-17 12:40:29 -04:00
|
|
|
BuildConfig.render(source, destination)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Default render through middleman
|
|
|
|
class BuildRenderer
|
|
|
|
def self.render(source, destination)
|
2009-07-28 14:06:45 -04:00
|
|
|
request_path = destination.gsub(File.join(Dir.pwd, 'build'), "")
|
|
|
|
browser = Rack::Test::Session.new(Rack::MockSession.new(Middleman))
|
|
|
|
browser.get(request_path)
|
|
|
|
browser.last_response.body
|
2009-07-27 19:25:32 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-09-17 12:40:29 -04:00
|
|
|
class SprocketsRenderer < BuildRenderer
|
|
|
|
def self.render(source, destination)
|
|
|
|
if File.extname(source) == '.js'
|
|
|
|
secretary = Sprockets::Secretary.new( :asset_root => "public",
|
|
|
|
:load_path => ["public/assets/javascripts/**/*.js"],
|
|
|
|
:source_files => [source] )
|
|
|
|
compressor = YUI::JavaScriptCompressor.new(:munge => true)
|
|
|
|
compressor.compress(secretary.concatenation.to_s)
|
|
|
|
else
|
|
|
|
super
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
BuildConfig.renderer = SprocketsRenderer
|
|
|
|
|
2009-07-28 14:06:45 -04:00
|
|
|
Generators.run_cli(Dir.pwd, 'mm-build', 1, %w(build --force).concat(ARGV))
|