Guest User

Untitled

a guest
Mar 13th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. # Development mode
  2. >> [~/merb/survey] merb -e development -i
  3. ~ Loaded DEVELOPMENT Environment...
  4. ~ loading gem 'merb_datamapper' from ...
  5. ~ loading gem 'merb_helpers' from ...
  6. ~ Compiling routes...
  7. ~ Connecting to database...
  8. ~ Using 'share-nothing' cookie sessions (4kb limit per client)
  9. >> Survey.first
  10. => #<Survey:0x11a529c @new_record=false, @completed=false, @hash_key="TEMPLATE", @updated_at=#<DateTime: 21207017232743867/8640000000,0,2299161>, @clients_project_id=0, @id=1, @created_at=#<DateTime: 21207017232743867/8640000000,0,2299161>>
  11.  
  12.  
  13. # Production mode
  14. >> [~/merb/survey] merb -e production -i
  15. >> Survey.first
  16. => #<Survey:0x11e9be0 @new_record=false, @id=1>
Add Comment
Please, Sign In to add comment