Skip to content

Instantly share code, notes, and snippets.

@dchentech
Created September 12, 2013 10:41
Show Gist options
  • Save dchentech/6535615 to your computer and use it in GitHub Desktop.
Save dchentech/6535615 to your computer and use it in GitHub Desktop.
选出所有Mongoid Model
mongoid_models = Object.constants.map {|i| i.to_s.constantize rescue nil }.compact.select {|i| i.is_a?(Class) && i.included_modules.include?(Mongoid::Document) }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment