Ruby 在 Rails-- 搞砸了 GEMFILE
Ruby On Rails--Messed Up GEMFILE
首先请原谅我糟糕的英语。我是 Web 应用程序开发的新手,我正在关注这个 tutorial。
目前我在本书的 1.5.1 Heroku 设置部分,作者要求编辑 GEMFILE。
我弄乱了我的 GEMFILE,我真的需要你的帮助来将它恢复为默认值。我已经粘贴了 GEMFILE here.
的内容
a@a:~$ rails -v
Rails 4.2.5
a@a:~$ ruby -v
ruby 2.2.4p230 (2015-12-16 revision 53155) [x86_64-linux]
a@a:~$ sudo mysql -v
[sudo] password for a:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 39
Server version: 5.5.46-0ubuntu0.14.04.2 (Ubuntu)
删除你 Gemfile.lock
和
gem 'mysql2', '>= 0.3.13', '< 0.5'
重写为
gem 'mysql2'
首先请原谅我糟糕的英语。我是 Web 应用程序开发的新手,我正在关注这个 tutorial。
目前我在本书的 1.5.1 Heroku 设置部分,作者要求编辑 GEMFILE。
我弄乱了我的 GEMFILE,我真的需要你的帮助来将它恢复为默认值。我已经粘贴了 GEMFILE here.
的内容a@a:~$ rails -v
Rails 4.2.5
a@a:~$ ruby -v
ruby 2.2.4p230 (2015-12-16 revision 53155) [x86_64-linux]
a@a:~$ sudo mysql -v
[sudo] password for a:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 39
Server version: 5.5.46-0ubuntu0.14.04.2 (Ubuntu)
删除你 Gemfile.lock
和
gem 'mysql2', '>= 0.3.13', '< 0.5'
重写为
gem 'mysql2'