Skip to content

Commit

Permalink
CHORE: Updated Gemfile to get travis running again
Browse files Browse the repository at this point in the history
  • Loading branch information
rudionrails committed Jan 31, 2014
1 parent 83bb02b commit 430eb5c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Gemfile
Expand Up @@ -15,6 +15,10 @@ group :development, :test do
gem 'simplecov', :require => false, :platform => :ruby_20
gem 'coveralls', :require => false, :platform => :ruby_20

gem 'activesupport', '~> 4'
if RUBY_VERSION < "2.0.0"
gem 'activesupport', '< 4.0.0'
else
gem 'activesupport', '>= 4.0.0'
end
end

3 changes: 3 additions & 0 deletions README.md
Expand Up @@ -189,6 +189,8 @@ logger.debug 'Started GET "/assets/logo.png" for 127.0.0.1 at 2013-06-20 10:18:3
logger.debug 'Served asset /logo.png - 304 Not Modified (0ms)'
```

### Alter log messages with modifiers


## Further Readings

Expand All @@ -202,6 +204,7 @@ logger.debug 'Served asset /logo.png - 304 Not Modified (0ms)'
### Additional Adapters
[Syslog](https://github.com/rudionrails/yell/wiki/additional-adapters-syslog)
[Graylog2 (GELF)](https://github.com/rudionrails/yell/wiki/additional-adapters-gelf)
[Fluentd](https://github.com/red5studios/yell-adapters-fluentd)


### Development
Expand Down

0 comments on commit 430eb5c

Please sign in to comment.