Sha256: 47a1fbfdf15ac507776349a963b67c40a53025db666c724a7fcc5c685086b1c0
Contents?: true
Size: 1.01 KB
Versions: 20
Compression:
Stored size: 1.01 KB
Contents
module Picky module Generators module Server # Generates a new empty Picky Unicorn Server. # # Example: # > picky-generate unicorn_server my_lovely_unicorn # class EmptyUnicorn < Picky::Generators::Base def initialize identifier, name, *args super identifier, name, 'server/empty_unicorn', *args end # # def generate exclaim "Setting up Picky Unicorn Server \"#{name}\"." create_target_directory copy_all_files expand_prototype_path('server/shared_unicorn') copy_all_files exclaim "\"#{name}\" is a great project name! Have fun :)\n" exclaim "" exclaim "Next steps:" exclaim "1. cd #{name}" exclaim "2. bundle install" exclaim "3. rake todo # (optional) shows you where Picky needs input from you" exclaim " # if you want to define your own search." end end end end end
Version data entries
20 entries across 20 versions & 1 rubygems