Created
September 12, 2013 10:41
-
-
Save dchentech/6535615 to your computer and use it in GitHub Desktop.
选出所有Mongoid Model
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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