Sha256: 2c9d237d904cef1a9075fdc1b98895a26e4858afd5b10d647e8f524c97458634
Contents?: true
Size: 580 Bytes
Versions: 1
Compression:
Stored size: 580 Bytes
Contents
#!/usr/bin/env ruby1.9 # encoding: utf-8 require "rango" Rango.boot # dependencies # Rango.dependency "dm-core", github: "datamapper/dm-core" # Rango.dependency "pupu", github: "botanicus/pupu", as: "pupu/adapters/rango" Rango.dependency "haml", github: "nex3/haml" if Dir.exist?("gems") Gem.path.clear Gem.path.push(Project.path.join("gems").to_s) end require_relative "settings" # database connection # DataMapper.setup(:default, "sqlite3::memory") # if you will run this script with -i argument, interactive session will begin Rango.interactive if ARGV.delete("-i")
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rango-0.0.4 | stubs/project/content/init.rb |