我已经安装了rails。 安装完成后,我用
创建一个应用程序$ rails new my_app
我从应用程序目录中运行了rails服务器。
~/rails_projects/my_app$ rails server
问题是,当我稍后进入该目录退出应用程序后,我第二次无法运行服务器。
~/rails_projects/my_app$ rails server
Could not find gem 'spring (>= 0) ruby' in the gems available on this machine.
Run `bundle install` to install missing gems.
它不显示该目录中的任何Rails版本,但是来自主目录的是:
~$ rails -v
Rails 4.1.1
~/rails_projects/my_app$ rails -v
Could not find gem 'spring (>= 0) ruby' in the gems available on this machine.
Run `bundle install` to install missing gems
答案 0 :(得分:1)
你开始使用Rails。请按照official guide进入框架内部。
要开始,您需要创建一个项目:
$ rails new my_app
然后转到项目目录:
$ cd my_app
安装依赖项(如果您向Gemfile添加任何内容):
$ bundle install
然后运行服务器
$ rails server
同样,如果您开始关注该指南!