Skip to content

Instantly share code, notes, and snippets.

View khata-jp's full-sized avatar

khata-jp

View GitHub Profile
@lightyrs
lightyrs / list_rails_models.rb
Created December 8, 2011 21:36
Rails List All Models
ActiveRecord::Base.connection.tables.map do |model|
model.capitalize.singularize.camelize
end
# returns ["Activity", "Article", "User", "Video", "Vote"]