将 RoR 从 5.0.0 降级到 4.2.1:ActiveSupport:Module 的未定义方法 `to_time_preserves_timezone='

Downgrading RoR from 5.0.0 to 4.2.1: undefined method `to_time_preserves_timezone=' for ActiveSupport:Module

我目前正在尝试将我的 RoR 应用程序从 5.0.0 降级到 4.2.1,因为像 activeadmin 这样的某些 gem 似乎不能很好地与 5.0.0 一起工作。

但是,我收到这个错误,不幸的是,在执行 rake db:migrate

时,它并没有真正告诉我太多信息
undefined method `to_time_preserves_timezone=' for ActiveSupport:Module

这是我的 Gemfile 的样子:

来源'https://rubygems.org'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.1'
# Postgress
gem 'pg'
# Authentication
gem 'devise'

# Use activeadmin for administration
gem 'activeadmin', github: 'activeadmin'

# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Slim support
gem "slim-rails"
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.1.0'
# See https://github.com/rails/execjs#readme for more supported      runtimes
# gem 'therubyracer', platforms: :ruby

# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes navigating your web application faster. Read more:    https://github.com/turbolinks/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more:    https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 3.0'
# Use ActiveModel has_secure_password
gem 'bcrypt', '~> 3.1.7'

# Use Bootstrap forms
gem 'bootstrap_form'

# gem 'capistrano-rails', group: :development
gem 'rails_12factor', group: :production

group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a     debugger console
gem 'byebug'

# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 2.0'

# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'

end

非常感谢您的任何想法。

首先……好吧。降级从来都不是一件有趣的事。

gem list 并查看列出了哪个版本的 activesupport。 Rails 4.2.1 将需要以前的版本 activesupport 4.2.1 以及一堆其他 gem。

之后您可能需要删除 Gemfile.lockbundle install,因为随后会获取正确的版本。我保证这会很混乱,但核心 rails 宝石至少应该降级。

编辑:我还猜测您的项目中会有 Rails 5.0 依赖项,这些依赖项将在回滚过程中中断,因此这甚至可能无法完全解决您的问题。不过值得一试。

删除 Gemfile.lock 和 运行 'bundle install' 将安装以 gemfile 编写的最新版本的 gem,除非指定了版本。这可能会导致与 4.2.1 版的兼容性问题。

这可能是由于 Rails 5.0 升级导致的问题。请确保项目目录不包含支持Rails 5.

的配置文件

我通过注释掉 config/initializers/new_framework_defaults.rb 解决了这个问题。该文件是 Rails 5 的一部分。之后似乎一切正常。