如何解决ruby on rails版本的差异(向后/向前兼容性)

时间:2013-04-19 14:58:38

标签: ruby-on-rails ruby database-schema dbvisualizer

我是Ruby / Ruby on Rails的新手,我正在使用运行在Rails project fedena上的2.3.5。我四处寻找rails schema visualizer ..但我发现只有some gems支持rails 1.x和others支持rails 3.x.

是否有可能获得一个使用某个RoR版本构建的RoR应用程序,并为另一个版本的RoR再次编译它?我一直在研究Ruby中的向后/向前兼容性,我得到un-encouraging结果。似乎各种RoR版本之间存在显着差异。

1 个答案:

答案 0 :(得分:0)

我看到你的问题我也有它但我用过这个:

  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

这将帮助您进行测试