0

I'm trying to create a work-around for a Rails app that disables the dependency for sqlite3 (and databases in general). Are there any efficient methods?

T145
  • 69
  • 8

2 Answers2

1

rails new myApp --skip-activerecord

Check "Rails 3 - how do I avoid database altogether?" for more info.

Community
  • 1
  • 1
usha
  • 28,973
  • 5
  • 72
  • 93
  • Use descriptive text when creating anchor text, don't use "this" or equally undescriptive phrases like "click here". Give the reader a clue what they are about to click-on. See the "Don't use 'click here' as link text" http://www.w3.org/QA/Tips/noClickHere. – the Tin Man Jul 01 '13 at 15:07
  • Awesome! How about for Rails 4? Same as Rails 3? Also, and I may be wrong about this, but can't I just use the command `rails new -o myApp` to skip ActiveRecord configuration? – T145 Jul 01 '13 at 15:12
0

I managed to figure it out! @Vimsha was close; turns out its actually rails new app --skip-active-record! :P

T145
  • 69
  • 8