-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
48 lines (42 loc) · 2.38 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '>= 2.5.9'
gem 'rails', '~> 6.1.0'
# ==============================
gem 'autoprefixer-rails' # automatically add browser prefixes to CSS.
# TODO: use bootstrap_form to simplify html templates.
gem 'bootsnap' # Bootsnap drastically improves application start times.
gem 'devise' # Devise is an authentication gem.
# TODO: move octicons_helper to webpack?
gem 'octicons_helper', '~> 4.0'
gem 'pundit' # authorization policies
gem 'redcarpet' # redcarpet markdown formatting
gem 'responders'
gem 'sassc-rails' # Use SCSS for stylesheets
gem 'stripe' # credit card processing
gem 'uglifier' # Use Uglifier as compressor for JavaScript assets
gem 'webpacker', '6.0.0.rc.5' # Rails 6 uses webpacker as the default javascript compiler.
gem 'webrick' # Ruby 3 doesn't come with webrick by default anymore.
gem 'will_paginate' # pagination
gem 'will_paginate-bootstrap-style' # Bootstrap 4 and 5 styling for pagination
group :development do
gem 'web-console' # Access an IRB console on exception pages or by using <%= console %> in views.
end
group :development, :test do
gem 'byebug' # Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'factory_bot_rails' # Use facoties to build data quickly.
gem 'faker' # Provides classes for creating fake data.
gem 'listen' # Spring and db gems need listen.
gem 'rails-controller-testing' # In Rails 5.0 'assigns' and 'assert_template' have been moved to a different gem.
gem 'rspec-rails'
gem 'shoulda' # Provides more readable test syntax
gem 'spring', '>= 3' # The dev environment can automatically reload when it sees files change.
gem 'sqlite3', '~> 1.4' # Use sqlite3 as the database for Active Record
end
group :doc do
gem 'sdoc' # bundle exec rake doc:rails generates the API under doc/api.
end
group :production do
gem 'pg' # heroku requires using postgresql for production deploys.
gem 'rails_12factor' # heroku requires rails_12factor for ENV variables in production deploys.
end