I am creating a webapp that requires the use of models but does not require actually saving to the database.
With ActiveRecords, is there a setting to not require an actual data store?
Thanks in advance for any pointers.
I am creating a webapp that requires the use of models but does not require actually saving to the database.
With ActiveRecords, is there a setting to not require an actual data store?
Thanks in advance for any pointers.
I am creating a webapp that requires the use of models but does not require actually saving to the database.
With ActiveRecords, is there a setting to not require an actual data store?
You can just not load activerecord. ( config.frameworks -=
[ :active_record] in environment.rb. There's a little more messing
around if you're still on 1.x)
Fred
I am creating a webapp that requires the use of models but does not require actually saving to the database.
With ActiveRecords, is there a setting to not require an actual data store?
Thanks in advance for any pointers.