gitextract_uknkcqm5/ ├── .coveralls.yml ├── .github/ │ └── workflows/ │ └── build.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .rubocop_todo.yml ├── .travis.yml ├── Appraisals ├── Gemfile ├── MIT-LICENSE ├── README.md ├── Rakefile ├── comma.gemspec ├── gemfiles/ │ ├── active6.0.6.gemfile │ ├── active6.1.7.6.gemfile │ ├── active7.0.8.gemfile │ ├── active7.1.3.gemfile │ ├── rails6.0.6.gemfile │ ├── rails6.1.7.6.gemfile │ ├── rails7.0.8.gemfile │ └── rails7.1.3.gemfile ├── init.rb ├── lib/ │ ├── comma/ │ │ ├── array.rb │ │ ├── data_extractor.rb │ │ ├── data_mapper_collection.rb │ │ ├── extractor.rb │ │ ├── generator.rb │ │ ├── header_extractor.rb │ │ ├── mongoid.rb │ │ ├── object.rb │ │ ├── relation.rb │ │ └── version.rb │ └── comma.rb └── spec/ ├── comma/ │ ├── comma_spec.rb │ ├── data_extractor_spec.rb │ ├── header_extractor_spec.rb │ └── rails/ │ ├── active_record_spec.rb │ ├── data_mapper_collection_spec.rb │ └── mongoid_spec.rb ├── controllers/ │ └── users_controller_spec.rb ├── non_rails_app/ │ └── ruby_classes.rb ├── rails_app/ │ ├── active_record/ │ │ ├── config.rb │ │ └── models.rb │ ├── data_mapper/ │ │ └── config.rb │ ├── mongoid/ │ │ └── config.rb │ ├── rails_app.rb │ └── tmp/ │ └── .gitkeep └── spec_helper.rb