diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-12-14 15:36:59 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-12-14 15:36:59 +0000 |
commit | e2952d3e5fc44c997c15ca3e5a1c0229ee1019c0 (patch) | |
tree | 983c8bec504fc4df4f301f5ffdba2ca51cc8ce4b | |
parent | 040d0a32d2be94736a5419d608dfec2bb37b2bc8 (diff) | |
download | redmine-e2952d3e5fc44c997c15ca3e5a1c0229ee1019c0.tar.gz redmine-e2952d3e5fc44c997c15ca3e5a1c0229ee1019c0.zip |
Rails 2.1.2 deprecations (#2332).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2134 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/models/user.rb | 2 | ||||
-rw-r--r-- | app/views/my/account.rhtml | 2 | ||||
-rw-r--r-- | vendor/plugins/actionwebservice/init.rb | 2 | ||||
-rw-r--r-- | vendor/plugins/classic_pagination/lib/pagination.rb | 4 | ||||
-rw-r--r-- | vendor/plugins/engines/lib/engines/rails_extensions/dependencies.rb | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/app/models/user.rb b/app/models/user.rb index ff46d9772..96923900e 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -144,7 +144,7 @@ class User < ActiveRecord::Base end def time_zone - @time_zone ||= (self.pref.time_zone.blank? ? nil : TimeZone[self.pref.time_zone]) + @time_zone ||= (self.pref.time_zone.blank? ? nil : ActiveSupport::TimeZone[self.pref.time_zone]) end def wants_comments_in_reverse_order? diff --git a/app/views/my/account.rhtml b/app/views/my/account.rhtml index 20210c99a..f4b726f96 100644 --- a/app/views/my/account.rhtml +++ b/app/views/my/account.rhtml @@ -38,7 +38,7 @@ <div class="box tabular"> <% fields_for :pref, @user.pref, :builder => TabularFormBuilder, :lang => current_language do |pref_fields| %> <p><%= pref_fields.check_box :hide_mail %></p> -<p><%= pref_fields.select :time_zone, TimeZone.all.collect {|z| [ z.to_s, z.name ]}, :include_blank => true %></p> +<p><%= pref_fields.select :time_zone, ActiveSupport::TimeZone.all.collect {|z| [ z.to_s, z.name ]}, :include_blank => true %></p> <p><%= pref_fields.select :comments_sorting, [[l(:label_chronological_order), 'asc'], [l(:label_reverse_chronological_order), 'desc']] %></p> <% end %> </div> diff --git a/vendor/plugins/actionwebservice/init.rb b/vendor/plugins/actionwebservice/init.rb index ade118c0f..32d6ea11a 100644 --- a/vendor/plugins/actionwebservice/init.rb +++ b/vendor/plugins/actionwebservice/init.rb @@ -1,7 +1,7 @@ require 'action_web_service' # These need to be in the load path for action_web_service to work -Dependencies.load_paths += ["#{RAILS_ROOT}/app/apis"] +ActiveSupport::Dependencies.load_paths += ["#{RAILS_ROOT}/app/apis"] # AWS Test helpers require 'action_web_service/test_invoke' if ENV['RAILS_ENV'] && ENV['RAILS_ENV'] =~ /^test/ diff --git a/vendor/plugins/classic_pagination/lib/pagination.rb b/vendor/plugins/classic_pagination/lib/pagination.rb index b6e9cf4bc..6a3e1a97b 100644 --- a/vendor/plugins/classic_pagination/lib/pagination.rb +++ b/vendor/plugins/classic_pagination/lib/pagination.rb @@ -97,8 +97,8 @@ module ActionController "Unknown options: #{unknown_option_keys.join(', ')}" unless unknown_option_keys.empty? - options[:singular_name] ||= Inflector.singularize(collection_id.to_s) - options[:class_name] ||= Inflector.camelize(options[:singular_name]) + options[:singular_name] ||= ActiveSupport::Inflector.singularize(collection_id.to_s) + options[:class_name] ||= ActiveSupport::Inflector.camelize(options[:singular_name]) end # Returns a paginator and a collection of Active Record model instances diff --git a/vendor/plugins/engines/lib/engines/rails_extensions/dependencies.rb b/vendor/plugins/engines/lib/engines/rails_extensions/dependencies.rb index 82ecaa880..05ba0eb58 100644 --- a/vendor/plugins/engines/lib/engines/rails_extensions/dependencies.rb +++ b/vendor/plugins/engines/lib/engines/rails_extensions/dependencies.rb @@ -140,4 +140,4 @@ module Engines::RailsExtensions::Dependencies end end -Dependencies.send :include, Engines::RailsExtensions::Dependencies +ActiveSupport::Dependencies.send :include, Engines::RailsExtensions::Dependencies |