mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
37 lines
No EOL
1.1 KiB
Ruby
Executable file
37 lines
No EOL
1.1 KiB
Ruby
Executable file
#!/usr/bin/env ruby
|
|
require File.join(File.dirname(File.dirname(__FILE__)), 'lib', 'middleman')
|
|
require 'templater'
|
|
|
|
module Generators
|
|
extend Templater::Manifold
|
|
desc "Generator for streamlining staticmatic"
|
|
|
|
class NewSite < Templater::Generator
|
|
desc "Creates a new middleman scaffold."
|
|
first_argument :location, :required => true, :desc => "Project location"
|
|
|
|
option :css_dir, :desc => 'The path to the css files'
|
|
option :js_dir, :desc => 'The path to the javascript files'
|
|
option :images_dir, :desc => 'The path to the image files'
|
|
|
|
def destination_root
|
|
File.expand_path(location)
|
|
end
|
|
|
|
def self.source_root
|
|
File.join(File.dirname(__FILE__), '..', 'lib', 'middleman', 'template')
|
|
end
|
|
|
|
template :config, "config.rb"
|
|
glob! :views
|
|
glob! :public
|
|
|
|
empty_directory :stylesheets, "public/stylesheets"#, File.join("public", css_dir)
|
|
empty_directory :javascripts, "public/javascripts"#, File.join("public", js_dir)
|
|
empty_directory :images, "public/images"#, File.join("public", images_dir)
|
|
end
|
|
|
|
add :setup, NewSite
|
|
end
|
|
|
|
Generators.run_cli(Dir.pwd, 'mm-init', 1, %w(setup).concat(ARGV)) |