Skip to content

Commit

Permalink
Merge pull request #164 from roidrage/end-old-version-support
Browse files Browse the repository at this point in the history
End support for Ruby 1.9.3 and Rails 3
  • Loading branch information
benlovell committed Feb 15, 2016
2 parents 089e092 + 37922cd commit 6c890db
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 28 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ language: ruby
cache: bundle
sudo: false
rvm:
- 1.9.3
- 2.3.0
- jruby
- jruby-head
Expand All @@ -16,6 +15,5 @@ env:
- JRUBY_OPTS='-J-XX:+TieredCompilation -J-XX:TieredStopAtLevel=1 -J-Djruby.compile.mode=OFF -J-Djruby.compile.invokedynamic=false'
gemfile:
- Gemfile
- gemfiles/Gemfile.actionpack3.2
- gemfiles/Gemfile.actionpack4.0
script: bundle exec rake
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,11 +100,7 @@ You can also keep the original (and verbose) Rails logger by following this conf
MyApp::Application.configure do
config.lograge.keep_original_rails_log = true

# Rails 4+
config.lograge.logger = ActiveSupport::Logger.new "#{Rails.root}/log/lograge_#{Rails.env}.log"

# Rails 3.2
# config.lograge.logger = ActiveSupport::BufferedLogger.new "#{Rails.root}/log/lograge_#{Rails.env}.log"
end
```

Expand Down
19 changes: 0 additions & 19 deletions gemfiles/Gemfile.actionpack3.2

This file was deleted.

6 changes: 3 additions & 3 deletions lograge.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Gem::Specification.new do |s|
s.add_development_dependency 'rubocop', '0.35.1'
s.add_development_dependency 'parser', '2.3.0.2'

s.add_runtime_dependency 'activesupport', '>= 3'
s.add_runtime_dependency 'actionpack', '>= 3'
s.add_runtime_dependency 'railties', '>= 3'
s.add_runtime_dependency 'activesupport', '>= 4'
s.add_runtime_dependency 'actionpack', '>= 4'
s.add_runtime_dependency 'railties', '>= 4'
end

0 comments on commit 6c890db

Please sign in to comment.