Skip to content

Instantly share code, notes, and snippets.

@adash333
Created January 30, 2022 09:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adash333/209c344b6d08d23026dafb60a37f7b11 to your computer and use it in GitHub Desktop.
Save adash333/209c344b6d08d23026dafb60a37f7b11 to your computer and use it in GitHub Desktop.
Progate Ruby on Rails 5 学習レッスン
source 'https://rubygems.org'
gem 'rails', '5.0.3'
# Use Puma as the app server
gem 'puma', '3.6.2'
# Use SCSS for stylesheets
gem 'sass-rails', '5.0.6'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '3.0.4'
gem 'pry-rails', '0.3.4'
# Use jquery as the JavaScript library
gem 'jquery-rails', '4.2.2'
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks', '5.0.1'
gem 'bcrypt', '3.1.11'
group :development, :test do
gem 'sqlite3', '1.3.13'
gem 'byebug', '9.0.6', platform: :mri
gem 'web-console', '3.4.0'
gem 'listen', '3.0.8'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring', '2.0.1'
gem 'spring-watcher-listen', '2.0.1'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment