Skip to content

Commit

Permalink
add active_record_deprecated_finders as a dep
Browse files Browse the repository at this point in the history
  • Loading branch information
jonleighton committed Apr 12, 2012
1 parent 1db54df commit dd2c9b9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Gemfile
Expand Up @@ -18,6 +18,12 @@ else
gem 'journey', :git => "git://github.com/rails/journey"
end

if ENV['AR_DEPRECATED_FINDERS']
gem 'active_record_deprecated_finders', path: ENV['AR_DEPRECATED_FINDERS']
else
gem 'active_record_deprecated_finders', git: 'git://github.com/rails/active_record_deprecated_finders'
end

# This needs to be with require false to avoid
# it being automatically loaded by sprockets
gem 'uglifier', '>= 1.0.3', :require => false
Expand Down
2 changes: 2 additions & 0 deletions activerecord/activerecord.gemspec
Expand Up @@ -22,4 +22,6 @@ Gem::Specification.new do |s|
s.add_dependency('activesupport', version)
s.add_dependency('activemodel', version)
s.add_dependency('arel', '~> 3.0.2')

s.add_dependency('active_record_deprecated_finders', '0.0.1')
end
1 change: 1 addition & 0 deletions activerecord/lib/active_record.rb
Expand Up @@ -25,6 +25,7 @@
require 'active_support/i18n'
require 'active_model'
require 'arel'
require 'active_record_deprecated_finders'

require 'active_record/version'

Expand Down

0 comments on commit dd2c9b9

Please sign in to comment.