# File lib/picnic/cli.rb, line 48
    def initialize(app, options = {})
      @app = app
      
      @options = options || {}
      @options[:app_path]   ||= File.expand_path(File.dirname(File.expand_path(__FILE__))+"/../lib/#{app}.rb")
      @options[:app_module] ||= app.capitalize
      @options[:pid_file]   ||= "/etc/#{app}/#{app}.pid"
      @options[:conf_file]  ||= nil
      @options[:verbose]    ||= false
      
      @options = options
    end