Sha256: a786433e767684c725e9c036a5d1157d14b46ddd94a2567b93c154c68c04eb5d
Contents?: true
Size: 1.16 KB
Versions: 42
Compression:
Stored size: 1.16 KB
Contents
module Picky module Generators module AllInOne # Generates a new Picky Sinatra/Unicorn combined Client/Server Example. # # Example: # > picky-generate all_in_one my_client_server_directory # class Sinatra < Picky::Generators::Base def initialize identifier, name, *args super identifier, name, 'all_in_one/sinatra', *args end # # def generate exclaim "Setting up Picky Sinatra Client/Server \"#{name}\"." create_target_directory copy_all_files copy_all_files expand_prototype_path('shared/server') 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 index" exclaim "4. unicorn -c unicorn.rb" exclaim "5. open http://localhost:8080/" exclaim "6. 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
42 entries across 42 versions & 1 rubygems