By default RAILS_RELATIVE_URL_ROOT is used only for asset pipeline.
To namespace your rails routes you need to wrap run MyApp::Application with map in your config.ru:
map ENV['RAILS_RELATIVE_URL_ROOT'] || "/" do| ENV["PATH"] = "/opt/ruby/bin:#{ENV['PATH']}" | |
| ENV["RAILS_ENV"] = "production" | |
| ENV["QUEUE"] = "*" | |
| Bluepill.application("nichelator") do |app| | |
| app.working_dir = "/var/apps/nichelator/current" | |
| app.uid = "app" | |
| app.gid = "app" | |
| 2.times do |i| | |
| app.process("resque-#{i}") do |process| |
| module Paperclip | |
| class Attachment | |
| class UploadedPath | |
| attr_reader :original_filename, :content_type, :size, :path | |
| def initialize(uploaded_file) | |
| @original_filename = uploaded_file["name"].downcase | |
| @content_type = uploaded_file["content_type"].to_s.strip | |
| @file_size = uploaded_file["size"].to_i | |
| @path = uploaded_file["path"] |
| #! /bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: mongodb | |
| # Required-Start: $all | |
| # Required-Stop: $all | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: starts the mongodb data-store | |
| # Description: starts mongodb using start-stop-daemon |
| One other cause is your :dependent callbacks. | |
| class Blog < AR::Base | |
| has_many :posts, :dependent => :destroy | |
| end | |
| This will iterate through every post and call #destroy on it. Use :delete_all if you want to just issue a single delete query. HOWEVER, this won't hit your destroy callbacks on Post. | |
| class Blog < AR::Base | |
| has_many :posts |
| # app name | |
| app_name = @root.split('/').last | |
| if yes?("Drop databases?") | |
| run "mysqladmin -u root -p drop #{app_name}_development -f" | |
| run "mysqladmin -u root -p drop #{app_name}_test -f" | |
| run "mysqladmin -u root -p drop #{app_name}_production -f" | |
| end | |
| if yes?("Create databases?") |
| module WordTruncateHelper | |
| def word_truncate(text, *args) | |
| options = args.extract_options! | |
| unless args.empty? | |
| options[:size] = args[0] || 75 | |
| options[:omission] = args[1] || "..." | |
| end | |
| options.reverse_merge!(:size => 75, :omission => "...") | |
| text.scan(/(\S+)(\s+)/)[0..options[:size]].flatten.join << options[:omission] if text |