Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 Ruby/Ruby on Rails 的新手,我正在使用在 Rails 2.3.5上运行的项目 fedena。我四处寻找一个 rails 架构可视化工具.. 但我发现只有一些 gem支持 rails 1.x 和其他支持 rails 3.x的 gem。
是否有可能获得一个基于某个 RoR 版本构建的 RoR 应用程序,然后为另一个版本的 RoR 再次编译它?我一直在研究 Ruby 中的向后/向前兼容性,但得到的结果并不令人鼓舞。似乎各种 RoR 版本之间存在显着差异。
我看到你的问题我也有,但我用这个:
GO TO /project/config/environment and add this code Rails::Initializer.run do |config| config.time_zone = 'UTC' config.gem 'GEM_NAME', :version => '~> 2.3.5' end
这将帮助您进行测试