Ruby on Rails教程阅读笔记

1)需要注意Gemfile里面的这段代码:

group :development, :test do
# Use sqlite3 as the database for Active Record
gem 'sqlite3', '1.3.13'
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', '9.0.6', platform: :mri
end

猜你喜欢

转载自www.cnblogs.com/ihibin/p/9184246.html