Skip to content

Instantly share code, notes, and snippets.

@jschee
Created January 5, 2020 05:55
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 jschee/38107a34c439370352dd1c3c3e7685a0 to your computer and use it in GitHub Desktop.
Save jschee/38107a34c439370352dd1c3c3e7685a0 to your computer and use it in GitHub Desktop.
uncut gemfile
# source 'https://rubygems.org'
source 'https://gems.ruby-china.com'
# git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.5.1'
# CORE GEMS
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' => someday baby
gem 'rails', '~> 6.0.2', '>= 6.0.2.1'
gem 'pg', '>= 0.18', '< 2.0'
gem 'puma', '~> 4.1'
gem 'sidekiq'
gem 'devise'
gem 'bootsnap', '>= 1.4.2', require: false
gem 'redis', '~> 4.0'
# ASSETS COMPILE & DELIVERY
gem 'sassc-rails'
gem 'webpacker', '~> 4.0'
gem 'turbolinks', '~> 5'
gem 'image_processing', '~> 1.2'
gem 'activestorage-aliyun'
# FOR REST-API SUPPORT
gem 'jbuilder', '~> 2.7'
gem 'rest_rails', '~> 1.0.5'
gem 'tiddle'
# Mailing
gem "letter_opener", group: :development
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
end
group :development do
gem 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.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