Created
March 6, 2014 02:17
-
-
Save brentsowers1/9380979 to your computer and use it in GitHub Desktop.
config/warbler.rb for including database migrations in WAR
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Disable Rake-environment-task framework detection by uncommenting/setting to false | |
# Warbler.framework_detection = false | |
# Warbler web application assembly configuration file | |
Warbler::Config.new do |config| | |
# Application directories to be included in the webapp. | |
# Add script and db/migrate here | |
config.dirs = %w(app config lib log vendor tmp script db/migrate) | |
# Uncomment this if you're running in 1.9 mode | |
#config.webxml.jruby.compat.version = "1.9" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment