LogRanger

Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file lib/log_ranger. To experiment with that code, run bin/console for an interactive prompt.

TODO: Delete this and the text above, and describe your gem

Installation

Add this line to your application's Gemfile:

gem "log_ranger"

And then execute:

$ bundle

Or install it yourself as:

$ gem install log_ranger

Usage

After installation, run rails g log_ranger to generate file needed.

This will create:

  • app/models/application_log.rb
  • config/mongoid.yml
  • config/initializers/log_ranger.rb
  • config/initializers/mongo.rb

Then add this gem to your Gemfile and run bundle install

gem "grape_logging"
gem "mongoid"

To use this logger as default logger, add following lines to your init.rb.

  insert_after Grape::Middleware::Formatter, GrapeLogging::Middleware::RequestLogger,
               logger: Logger.new(GrapeLogging::MultiIO.new($log_file, STDERR), formatter: CustomFormatter.new),
               include: [ GrapeLogging::Loggers::Response.new,
                          GrapeLogging::Loggers::FilterParameters.new,
                          GrapeLogging::Loggers::ClientEnv.new,
                          GrapeLogging::Loggers::RequestHeaders.new ]

Last, add this following lines to your .env.

LOG_APP_CODE=
MONGO_DB_NAME=
MONGO_DB_HOST=
MONGO_DB_USERNAME=
MONGO_DB_PASSWORD=

Development

After checking out the repo, run bin/setup to install dependencies. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.