├── .gitignore ├── .rvmrc ├── Gemfile ├── Gemfile.lock ├── MIT-LICENSE ├── README.md ├── Rakefile ├── VERSION ├── central_logger.gemspec ├── lib ├── central_logger.rb └── central_logger │ ├── filter.rb │ ├── initializer.rb │ ├── initializer_mixin.rb │ ├── mongo_logger.rb │ ├── railtie.rb │ └── replica_set_helper.rb └── test ├── active_record.rb ├── config └── samples │ ├── central_logger.yml │ ├── database.yml │ ├── database_no_file_logging.yml │ ├── database_replica_set.yml │ ├── database_with_auth.yml │ └── mongoid.yml ├── rails.rb ├── rails ├── 2 │ ├── Gemfile │ ├── Gemfile.lock │ ├── README │ ├── Rakefile │ ├── app │ │ ├── controllers │ │ │ ├── application_controller.rb │ │ │ └── order_controller.rb │ │ ├── helpers │ │ │ └── application_helper.rb │ │ └── views │ ├── config │ │ ├── boot.rb │ │ ├── database.yml │ │ ├── environment.rb │ │ ├── environments │ │ │ ├── development.rb │ │ │ ├── production.rb │ │ │ └── test.rb │ │ ├── initializers │ │ │ ├── backtrace_silencers.rb │ │ │ ├── cookie_verification_secret.rb │ │ │ ├── inflections.rb │ │ │ ├── mime_types.rb │ │ │ ├── new_rails_defaults.rb │ │ │ └── session_store.rb │ │ ├── locales │ │ │ └── en.yml │ │ ├── preinitializer.rb │ │ └── routes.rb │ ├── db │ │ ├── schema.rb │ │ └── seeds.rb │ ├── doc │ │ └── README_FOR_APP │ ├── public │ │ ├── 404.html │ │ ├── 422.html │ │ ├── 500.html │ │ ├── favicon.ico │ │ ├── images │ │ │ └── rails.png │ │ ├── index.html │ │ ├── javascripts │ │ │ ├── application.js │ │ │ ├── controls.js │ │ │ ├── dragdrop.js │ │ │ ├── effects.js │ │ │ └── prototype.js │ │ └── robots.txt │ ├── script │ │ ├── about │ │ ├── console │ │ ├── dbconsole │ │ ├── destroy │ │ ├── generate │ │ ├── performance │ │ │ ├── benchmarker │ │ │ └── profiler │ │ ├── plugin │ │ ├── runner │ │ └── server │ └── test ├── 3 │ ├── Gemfile │ ├── Gemfile.lock │ ├── README │ ├── Rakefile │ ├── app │ │ ├── controllers │ │ │ ├── application_controller.rb │ │ │ └── order_controller.rb │ │ ├── helpers │ │ │ ├── application_helper.rb │ │ │ └── order_helper.rb │ │ └── views │ ├── config.ru │ ├── 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 │ ├── db │ │ ├── schema.rb │ │ └── seeds.rb │ ├── doc │ │ └── README_FOR_APP │ ├── lib │ │ └── tasks │ │ │ └── .gitkeep │ ├── public │ │ ├── 404.html │ │ ├── 422.html │ │ ├── 500.html │ │ ├── favicon.ico │ │ ├── images │ │ │ └── rails.png │ │ ├── index.html │ │ ├── javascripts │ │ │ ├── application.js │ │ │ ├── controls.js │ │ │ ├── dragdrop.js │ │ │ ├── effects.js │ │ │ ├── prototype.js │ │ │ └── rails.js │ │ ├── robots.txt │ │ └── stylesheets │ │ │ └── .gitkeep │ ├── script │ │ └── rails │ ├── test │ └── vendor │ │ └── plugins │ │ └── .gitkeep └── common │ ├── app │ ├── controllers │ │ └── order_controller.rb │ └── views │ │ ├── layouts │ │ └── application.html.erb │ │ └── order │ │ ├── create.html.erb │ │ └── show.html.erb │ └── test │ ├── functional │ └── order_controller_test.rb │ └── test_helper.rb ├── shoulda_macros └── log_macros.rb ├── test.sh ├── test_helper.rb └── unit ├── central_logger_replica_test.rb └── central_logger_test.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/.gitignore -------------------------------------------------------------------------------- /.rvmrc: -------------------------------------------------------------------------------- 1 | rvm 1.9.2@central_logger 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.3.2 -------------------------------------------------------------------------------- /central_logger.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/central_logger.gemspec -------------------------------------------------------------------------------- /lib/central_logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/lib/central_logger.rb -------------------------------------------------------------------------------- /lib/central_logger/filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/lib/central_logger/filter.rb -------------------------------------------------------------------------------- /lib/central_logger/initializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/lib/central_logger/initializer.rb -------------------------------------------------------------------------------- /lib/central_logger/initializer_mixin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/lib/central_logger/initializer_mixin.rb -------------------------------------------------------------------------------- /lib/central_logger/mongo_logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/lib/central_logger/mongo_logger.rb -------------------------------------------------------------------------------- /lib/central_logger/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/lib/central_logger/railtie.rb -------------------------------------------------------------------------------- /lib/central_logger/replica_set_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/lib/central_logger/replica_set_helper.rb -------------------------------------------------------------------------------- /test/active_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/active_record.rb -------------------------------------------------------------------------------- /test/config/samples/central_logger.yml: -------------------------------------------------------------------------------- 1 | test: 2 | database: system_log 3 | -------------------------------------------------------------------------------- /test/config/samples/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/config/samples/database.yml -------------------------------------------------------------------------------- /test/config/samples/database_no_file_logging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/config/samples/database_no_file_logging.yml -------------------------------------------------------------------------------- /test/config/samples/database_replica_set.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/config/samples/database_replica_set.yml -------------------------------------------------------------------------------- /test/config/samples/database_with_auth.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/config/samples/database_with_auth.yml -------------------------------------------------------------------------------- /test/config/samples/mongoid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/config/samples/mongoid.yml -------------------------------------------------------------------------------- /test/rails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails.rb -------------------------------------------------------------------------------- /test/rails/2/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/Gemfile -------------------------------------------------------------------------------- /test/rails/2/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/Gemfile.lock -------------------------------------------------------------------------------- /test/rails/2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/README -------------------------------------------------------------------------------- /test/rails/2/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/Rakefile -------------------------------------------------------------------------------- /test/rails/2/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /test/rails/2/app/controllers/order_controller.rb: -------------------------------------------------------------------------------- 1 | ../../../common/app/controllers/order_controller.rb -------------------------------------------------------------------------------- /test/rails/2/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /test/rails/2/app/views: -------------------------------------------------------------------------------- 1 | ../../common/app/views -------------------------------------------------------------------------------- /test/rails/2/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/config/boot.rb -------------------------------------------------------------------------------- /test/rails/2/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/config/database.yml -------------------------------------------------------------------------------- /test/rails/2/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/config/environment.rb -------------------------------------------------------------------------------- /test/rails/2/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/config/environments/development.rb -------------------------------------------------------------------------------- /test/rails/2/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/config/environments/production.rb -------------------------------------------------------------------------------- /test/rails/2/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/config/environments/test.rb -------------------------------------------------------------------------------- /test/rails/2/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /test/rails/2/config/initializers/cookie_verification_secret.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/config/initializers/cookie_verification_secret.rb -------------------------------------------------------------------------------- /test/rails/2/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/config/initializers/inflections.rb -------------------------------------------------------------------------------- /test/rails/2/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /test/rails/2/config/initializers/new_rails_defaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/config/initializers/new_rails_defaults.rb -------------------------------------------------------------------------------- /test/rails/2/config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/config/initializers/session_store.rb -------------------------------------------------------------------------------- /test/rails/2/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/config/locales/en.yml -------------------------------------------------------------------------------- /test/rails/2/config/preinitializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/config/preinitializer.rb -------------------------------------------------------------------------------- /test/rails/2/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/config/routes.rb -------------------------------------------------------------------------------- /test/rails/2/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/db/schema.rb -------------------------------------------------------------------------------- /test/rails/2/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/db/seeds.rb -------------------------------------------------------------------------------- /test/rails/2/doc/README_FOR_APP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/doc/README_FOR_APP -------------------------------------------------------------------------------- /test/rails/2/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/public/404.html -------------------------------------------------------------------------------- /test/rails/2/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/public/422.html -------------------------------------------------------------------------------- /test/rails/2/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/public/500.html -------------------------------------------------------------------------------- /test/rails/2/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/rails/2/public/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/public/images/rails.png -------------------------------------------------------------------------------- /test/rails/2/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/public/index.html -------------------------------------------------------------------------------- /test/rails/2/public/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/public/javascripts/application.js -------------------------------------------------------------------------------- /test/rails/2/public/javascripts/controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/public/javascripts/controls.js -------------------------------------------------------------------------------- /test/rails/2/public/javascripts/dragdrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/public/javascripts/dragdrop.js -------------------------------------------------------------------------------- /test/rails/2/public/javascripts/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/public/javascripts/effects.js -------------------------------------------------------------------------------- /test/rails/2/public/javascripts/prototype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/public/javascripts/prototype.js -------------------------------------------------------------------------------- /test/rails/2/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/public/robots.txt -------------------------------------------------------------------------------- /test/rails/2/script/about: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/script/about -------------------------------------------------------------------------------- /test/rails/2/script/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/script/console -------------------------------------------------------------------------------- /test/rails/2/script/dbconsole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/script/dbconsole -------------------------------------------------------------------------------- /test/rails/2/script/destroy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/script/destroy -------------------------------------------------------------------------------- /test/rails/2/script/generate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/script/generate -------------------------------------------------------------------------------- /test/rails/2/script/performance/benchmarker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/script/performance/benchmarker -------------------------------------------------------------------------------- /test/rails/2/script/performance/profiler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/script/performance/profiler -------------------------------------------------------------------------------- /test/rails/2/script/plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/script/plugin -------------------------------------------------------------------------------- /test/rails/2/script/runner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/script/runner -------------------------------------------------------------------------------- /test/rails/2/script/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/2/script/server -------------------------------------------------------------------------------- /test/rails/2/test: -------------------------------------------------------------------------------- 1 | ../common/test -------------------------------------------------------------------------------- /test/rails/3/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/3/Gemfile -------------------------------------------------------------------------------- /test/rails/3/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/3/Gemfile.lock -------------------------------------------------------------------------------- /test/rails/3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/3/README -------------------------------------------------------------------------------- /test/rails/3/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/3/Rakefile -------------------------------------------------------------------------------- /test/rails/3/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/3/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /test/rails/3/app/controllers/order_controller.rb: -------------------------------------------------------------------------------- 1 | ../../../common/app/controllers/order_controller.rb -------------------------------------------------------------------------------- /test/rails/3/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /test/rails/3/app/helpers/order_helper.rb: -------------------------------------------------------------------------------- 1 | module OrderHelper 2 | end 3 | -------------------------------------------------------------------------------- /test/rails/3/app/views: -------------------------------------------------------------------------------- 1 | ../../common/app/views -------------------------------------------------------------------------------- /test/rails/3/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/3/config.ru -------------------------------------------------------------------------------- /test/rails/3/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/3/config/application.rb -------------------------------------------------------------------------------- /test/rails/3/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/3/config/boot.rb -------------------------------------------------------------------------------- /test/rails/3/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/3/config/database.yml -------------------------------------------------------------------------------- /test/rails/3/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/3/config/environment.rb -------------------------------------------------------------------------------- /test/rails/3/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/3/config/environments/development.rb -------------------------------------------------------------------------------- /test/rails/3/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/3/config/environments/production.rb -------------------------------------------------------------------------------- /test/rails/3/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/3/config/environments/test.rb -------------------------------------------------------------------------------- /test/rails/3/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/3/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /test/rails/3/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/3/config/initializers/inflections.rb -------------------------------------------------------------------------------- /test/rails/3/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/3/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /test/rails/3/config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/3/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /test/rails/3/config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/3/config/initializers/session_store.rb -------------------------------------------------------------------------------- /test/rails/3/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/3/config/locales/en.yml -------------------------------------------------------------------------------- /test/rails/3/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/3/config/routes.rb -------------------------------------------------------------------------------- /test/rails/3/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/3/db/schema.rb -------------------------------------------------------------------------------- /test/rails/3/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/3/db/seeds.rb -------------------------------------------------------------------------------- /test/rails/3/doc/README_FOR_APP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/3/doc/README_FOR_APP -------------------------------------------------------------------------------- /test/rails/3/lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/rails/3/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/3/public/404.html -------------------------------------------------------------------------------- /test/rails/3/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/3/public/422.html -------------------------------------------------------------------------------- /test/rails/3/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/3/public/500.html -------------------------------------------------------------------------------- /test/rails/3/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/rails/3/public/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/3/public/images/rails.png -------------------------------------------------------------------------------- /test/rails/3/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/3/public/index.html -------------------------------------------------------------------------------- /test/rails/3/public/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/3/public/javascripts/application.js -------------------------------------------------------------------------------- /test/rails/3/public/javascripts/controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/3/public/javascripts/controls.js -------------------------------------------------------------------------------- /test/rails/3/public/javascripts/dragdrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/3/public/javascripts/dragdrop.js -------------------------------------------------------------------------------- /test/rails/3/public/javascripts/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/3/public/javascripts/effects.js -------------------------------------------------------------------------------- /test/rails/3/public/javascripts/prototype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/3/public/javascripts/prototype.js -------------------------------------------------------------------------------- /test/rails/3/public/javascripts/rails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/3/public/javascripts/rails.js -------------------------------------------------------------------------------- /test/rails/3/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/3/public/robots.txt -------------------------------------------------------------------------------- /test/rails/3/public/stylesheets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/rails/3/script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/3/script/rails -------------------------------------------------------------------------------- /test/rails/3/test: -------------------------------------------------------------------------------- 1 | ../common/test -------------------------------------------------------------------------------- /test/rails/3/vendor/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/rails/common/app/controllers/order_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/common/app/controllers/order_controller.rb -------------------------------------------------------------------------------- /test/rails/common/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/common/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /test/rails/common/app/views/order/create.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/rails/common/app/views/order/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/common/app/views/order/show.html.erb -------------------------------------------------------------------------------- /test/rails/common/test/functional/order_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/common/test/functional/order_controller_test.rb -------------------------------------------------------------------------------- /test/rails/common/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/rails/common/test/test_helper.rb -------------------------------------------------------------------------------- /test/shoulda_macros/log_macros.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/shoulda_macros/log_macros.rb -------------------------------------------------------------------------------- /test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/test.sh -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/unit/central_logger_replica_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/unit/central_logger_replica_test.rb -------------------------------------------------------------------------------- /test/unit/central_logger_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customink/central_logger/HEAD/test/unit/central_logger_test.rb --------------------------------------------------------------------------------