问题
I am trying to import a project that someone else build 1 year ago, now my mac have already installed all below which include:
ruby, rails and mysqlpaperclipdragonflyauthlogicsqlite3-rubyuuidrmagickthin or mongrelnokogirirack-cacheponytiny_mce
could any one tell how to import the project, or any link on line can help me?
回答1:
There is no such thing called import a rails project, If you have ruby installed, the you could use bundler to manage your gems via the Gemfile
if your project is built with rails >= 3 then read this
if your project is build with rails < 3 then read this
and once you are ready with the setup run
bundle install
which will install all the necessary gems, and if you already have a Gemfile, then simply run
bundle update
来源:https://stackoverflow.com/questions/14763377/how-to-import-ruby-on-rails-project