Guest User

Untitled

a guest
Apr 18th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. ##NameError: uninitialized constant ActiveRecord # At line 4
  2.  
  3. require 'rubygems'
  4. gem 'activerecord'
  5.  
  6. ActiveRecord::Base.establish_connection(
  7. :adapter => "mysql",
  8. :host => "localhost",
  9. :username => "root",
  10. :password => "",
  11. :database => "test1"
  12. )
  13.  
  14.  
  15. class User < ActiveRecord::Base; end
  16. users = User.find(:all)
Add Comment
Please, Sign In to add comment