Skip to content
This repository has been archived by the owner on Jan 2, 2018. It is now read-only.

Commit

Permalink
fixed path/typos due to name changes and other changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mattetti committed Apr 27, 2012
1 parent 9963440 commit 9286f7b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/wd_sinatra
Expand Up @@ -19,7 +19,7 @@ class WdSinatra < Thor::Group
end end


def create_config_directory def create_config_directory
directory "config", "#{name}/lib" directory "config", "#{name}/config"
end end


def create_bin_directory def create_bin_directory
Expand Down
2 changes: 1 addition & 1 deletion lib/wd_sinatra/app_loader.rb
Expand Up @@ -113,7 +113,7 @@ def set_sinatra_settings
# Using the :production env would wrap errors instead of displaying them # Using the :production env would wrap errors instead of displaying them
# like in dev mode # like in dev mode
set :environment, RACK_ENV set :environment, RACK_ENV
set :root, ROOT set :root, root_path
set :app_file, __FILE__ set :app_file, __FILE__
set :public_folder, File.join(root_path, "public") set :public_folder, File.join(root_path, "public")
# Checks on static files before dispatching calls # Checks on static files before dispatching calls
Expand Down

0 comments on commit 9286f7b

Please sign in to comment.