gitextract_x1i020o0/ ├── .gitignore ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── active_reload.gemspec ├── lib/ │ ├── active_reload/ │ │ └── version.rb │ └── active_reload.rb └── test/ ├── dummy3010/ │ ├── Gemfile │ ├── README │ ├── Rakefile │ ├── app/ │ │ ├── controllers/ │ │ │ ├── application_controller.rb │ │ │ └── empty_controller.rb │ │ └── views/ │ │ └── layouts/ │ │ └── application.html.erb │ ├── config/ │ │ ├── application.rb │ │ ├── boot.rb │ │ ├── database.yml │ │ ├── environment.rb │ │ ├── environments/ │ │ │ ├── development.rb │ │ │ ├── production.rb │ │ │ └── test.rb │ │ ├── initializers/ │ │ │ ├── backtrace_silencers.rb │ │ │ ├── inflections.rb │ │ │ ├── mime_types.rb │ │ │ ├── secret_token.rb │ │ │ └── session_store.rb │ │ ├── locales/ │ │ │ └── en.yml │ │ └── routes.rb │ ├── config.ru │ ├── db/ │ │ └── seeds.rb │ ├── doc/ │ │ └── README_FOR_APP │ ├── lib/ │ │ └── tasks/ │ │ └── .gitkeep │ ├── public/ │ │ ├── 404.html │ │ ├── 422.html │ │ ├── 500.html │ │ ├── index.html │ │ ├── javascripts/ │ │ │ ├── application.js │ │ │ ├── controls.js │ │ │ ├── dragdrop.js │ │ │ ├── effects.js │ │ │ ├── prototype.js │ │ │ └── rails.js │ │ ├── robots.txt │ │ └── stylesheets/ │ │ └── .gitkeep │ ├── script/ │ │ └── rails │ ├── test/ │ │ ├── performance/ │ │ │ └── browsing_test.rb │ │ └── test_helper.rb │ └── vendor/ │ └── plugins/ │ └── .gitkeep ├── dummy310rc6/ │ ├── .gitignore │ ├── Gemfile │ ├── README │ ├── Rakefile │ ├── app/ │ │ ├── assets/ │ │ │ ├── javascripts/ │ │ │ │ └── application.js │ │ │ └── stylesheets/ │ │ │ └── application.css │ │ ├── controllers/ │ │ │ ├── application_controller.rb │ │ │ └── empty_controller.rb │ │ ├── helpers/ │ │ │ └── application_helper.rb │ │ ├── mailers/ │ │ │ └── .gitkeep │ │ ├── models/ │ │ │ └── .gitkeep │ │ └── views/ │ │ └── layouts/ │ │ └── application.html.erb │ ├── config/ │ │ ├── application.rb │ │ ├── boot.rb │ │ ├── database.yml │ │ ├── environment.rb │ │ ├── environments/ │ │ │ ├── development.rb │ │ │ ├── production.rb │ │ │ └── test.rb │ │ ├── initializers/ │ │ │ ├── backtrace_silencers.rb │ │ │ ├── inflections.rb │ │ │ ├── mime_types.rb │ │ │ ├── secret_token.rb │ │ │ ├── session_store.rb │ │ │ └── wrap_parameters.rb │ │ ├── locales/ │ │ │ └── en.yml │ │ └── routes.rb │ ├── config.ru │ ├── db/ │ │ └── seeds.rb │ ├── doc/ │ │ └── README_FOR_APP │ ├── lib/ │ │ └── tasks/ │ │ └── .gitkeep │ ├── log/ │ │ └── .gitkeep │ ├── public/ │ │ ├── 404.html │ │ ├── 422.html │ │ ├── 500.html │ │ ├── index.html │ │ └── robots.txt │ ├── script/ │ │ └── rails │ ├── test/ │ │ ├── fixtures/ │ │ │ └── .gitkeep │ │ ├── functional/ │ │ │ └── .gitkeep │ │ ├── integration/ │ │ │ └── .gitkeep │ │ ├── performance/ │ │ │ └── browsing_test.rb │ │ ├── test_helper.rb │ │ └── unit/ │ │ └── .gitkeep │ └── vendor/ │ ├── assets/ │ │ └── stylesheets/ │ │ └── .gitkeep │ └── plugins/ │ └── .gitkeep ├── support/ │ └── defined_middleware.rb └── unit/ └── reload_test.rb