Skip to content

Instantly share code, notes, and snippets.

@tuwukee
Created October 30, 2019 20:35
Show Gist options
  • Save tuwukee/6bf503f06ad85c44224b6c9974b89ef4 to your computer and use it in GitHub Desktop.
Save tuwukee/6bf503f06ad85c44224b6c9974b89ef4 to your computer and use it in GitHub Desktop.
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "2.6.5"
gem "bootsnap", require: false
gem "pg", ">= 0.18", "< 2.0"
gem "puma", "~> 3.11"
gem "rails", "~> 6.0.0"
gem "sass-rails", "~> 5"
gem "slim", "~> 4.0"
gem "webpacker", "~> 4.0"
group :development, :test do
gem "byebug", platforms: [:mri, :mingw, :x64_mingw]
gem "factory_bot_rails", "~> 4.10"
gem "rspec-rails", "~> 3.8"
end
group :development do
gem "listen", ">= 3.0.5", "< 3.2"
gem "web-console", ">= 3.3.0"
end
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment