วันพุธที่ 28 มีนาคม พ.ศ. 2555

Rails3: How to config rails project no database ?

มีวิธีทำให้ Rails Project ไม่ต้องใช้ database อย่างไร

ใน config/application.rb ให้ comment #require 'rails/all'

ใน config/environments/development.rb ให้ comment #config.active_record.xxxxxxx...

และให้เพิ่ม code ข้างล่างนี้แทนที่
require "action_controller/railtie"
require
"action_mailer/railtie"
require
"active_resource/railtie"
require
"rails/test_unit/railtie"
require
"sprockets/railtie"
อ้างอิง : http://stackoverflow.com/questions/3954307/rails-3-how-do-i-avoid-database-altogether


ไม่มีความคิดเห็น: