parent
43ac01af5c
commit
cf39b2e2cb
49 changed files with 1372 additions and 0 deletions
36
bin/mm-init
Executable file
36
bin/mm-init
Executable file
|
@ -0,0 +1,36 @@
|
|||
#!/usr/bin/env ruby
|
||||
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 :init, "init.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))
|
Loading…
Add table
Add a link
Reference in a new issue