class Object

Constants

DB_PATH

Public Instance Methods

mkrootwindowsfix( root ) click to toggle source

setup mini-rails

see https://gist.github.com/josevalim/1942658
and others
# File lib/sportweb/application.rb, line 54
def mkrootwindowsfix( root )
  puts "root: #{root}"
  if root.start_with?( "C:\\" )
    puts "   use: #{root[2..-1]}"
    root[2..-1]   ## cut-of "C:\\"
  else
    root
  end
end
unknown() click to toggle source

note: will look for Gemfile in current working folder

use BUNDLE_GEMFILE env variable to
 tell bundler where the Gemfile is
# File lib/sportweb/boot_with_bundler.rb, line 41
puts "SportWeb.root: >>#{SportWeb.root}<<"