Fix missing core extension dependencies

This commit is contained in:
Jeremy Kemper
2009-04-28 17:58:51 -07:00
parent 4246a79a99
commit b825bef74c
6 changed files with 10 additions and 2 deletions

View File

@@ -1,4 +1,3 @@
require 'active_support'
require 'action_controller'
require 'fileutils'

View File

@@ -1,3 +1,5 @@
require 'active_support'
require 'active_support/core/all'
require 'active_support/test_case'
require 'action_controller'

View File

@@ -1,3 +1,4 @@
require 'active_support'
require 'active_support/core_ext/kernel/reporting'
require 'active_support/core_ext/symbol'
require 'active_support/dependencies'

View File

@@ -12,10 +12,10 @@ end
desc 'Generate a crytographically secure secret key. This is typically used to generate a secret for cookie sessions.'
task :secret do
require 'active_support/secure_random'
puts ActiveSupport::SecureRandom.hex(64)
end
require 'active_support'
namespace :time do
namespace :zones do
desc 'Displays names of all time zones recognized by the Rails TimeZone class, grouped by offset. Results can be filtered with optional OFFSET parameter, e.g., OFFSET=-6'
@@ -30,6 +30,8 @@ namespace :time do
desc 'Displays names of time zones recognized by the Rails TimeZone class with the same offset as the system local time'
task :local do
require 'active_support'
require 'active_support/core/time'
jan_offset = Time.now.beginning_of_year.utc_offset
jul_offset = Time.now.beginning_of_year.change(:month => 7).utc_offset
offset = jan_offset < jul_offset ? jan_offset : jul_offset
@@ -38,6 +40,8 @@ namespace :time do
# to find UTC -06:00 zones, OFFSET can be set to either -6, -6:00 or 21600
def build_time_zone_list(method, offset = ENV['OFFSET'])
require 'active_support'
require 'active_support/core/time'
if offset
offset = if offset.to_s.match(/(\+|-)?(\d+):(\d+)/)
sign = $1 == '-' ? -1 : 1

View File

@@ -13,6 +13,7 @@ gem 'mocha', '>= 0.9.5'
require 'mocha'
require 'active_support'
require 'active_support/core/all'
require 'active_support/test_case'
if defined?(RAILS_ROOT)

View File

@@ -3,6 +3,7 @@ $:.unshift File.dirname(__FILE__) + "/../../activesupport/lib"
require 'test/unit'
require 'active_support'
require 'active_support/core/all'
require 'initializer'
require File.join(File.dirname(__FILE__), 'abstract_unit')