mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
Fix missing core extension dependencies
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
require 'active_support'
|
||||
require 'action_controller'
|
||||
|
||||
require 'fileutils'
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
require 'active_support'
|
||||
require 'active_support/core/all'
|
||||
require 'active_support/test_case'
|
||||
require 'action_controller'
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
require 'active_support'
|
||||
require 'active_support/core_ext/kernel/reporting'
|
||||
require 'active_support/core_ext/symbol'
|
||||
require 'active_support/dependencies'
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user