mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 16:19:52 +01:00
7 lines
270 B
Ruby
7 lines
270 B
Ruby
# Load the Rails application.
|
|
require_relative 'application'
|
|
|
|
# Initialize the Rails application.
|
|
start = Time.now
|
|
Rails.application.initialize!
|
|
puts 'processing time of Rails.application.initialize!: ' + "#{(Time.now - start).round(3).to_s.ljust(5, '0')}s".light_green
|