forked from ledermann/docker-rails-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
100 lines (67 loc) · 3.52 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.0.0'
# Full-stack web application framework. (https://rubyonrails.org)
gem 'rails', '~> 6.1.3'
# Pg is the Ruby interface to the {PostgreSQL RDBMS}[http://www.postgresql.org/] (https://github.com/ged/ruby-pg)
gem 'pg', '>= 0.18', '< 2.0'
# Puma is a simple, fast, threaded, and highly concurrent HTTP 1.1 server for Ruby/Rack applications (http://puma.io)
gem 'puma', '~> 5.0'
# Sass adapter for the Rails asset pipeline. (https://github.com/rails/sass-rails)
gem 'sass-rails', '>= 6'
# Use webpack to manage app-like JavaScript modules in Rails (https://github.com/rails/webpacker)
gem 'webpacker', '~> 5.0'
# Create JSON structures via a Builder-style DSL (https://github.com/rails/jbuilder)
gem 'jbuilder', '~> 2.7'
# A fast JSON parser and serializer. (http://www.ohler.com/oj)
gem 'oj'
# High-level wrapper for processing images for the web with ImageMagick or libvips. (https://github.com/janko/image_processing)
gem 'image_processing', '~> 1.2'
# AWS SDK for Ruby - Amazon S3 (https://github.com/aws/aws-sdk-ruby)
gem 'aws-sdk-s3'
# Boot large ruby/rails apps faster (https://github.com/Shopify/bootsnap)
gem 'bootsnap', '>= 1.4.4'
# Reports exceptions to Rollbar (https://rollbar.com)
gem 'rollbar'
# Tame Rails' multi-line logging into a single line per request (https://github.com/roidrage/lograge)
gem 'lograge'
# Whitespace cleanup for ActiveModel attributes (https://github.com/rmm5t/strip_attributes)
gem 'strip_attributes'
# The Ultimate Pagination Ruby Gem (https://github.com/ddnexus/pagy)
gem 'pagy'
# A modern, responsive admin framework for Ruby on Rails (https://www.trestle.io)
gem 'trestle'
# Flexible authentication solution for Rails with Warden (https://github.com/heartcombo/devise)
gem 'devise'
# Middleware for enabling Cross-Origin Resource Sharing in Rack apps (https://github.com/cyu/rack-cors)
gem 'rack-cors'
# Block & throttle abusive requests (https://github.com/kickstarter/rack-attack)
gem 'rack-attack'
# Rack middleware for defining a canonical host name. (http://github.com/tylerhunt/rack-canonical-host)
gem 'rack-canonical-host'
# Simple authorization solution for Rails. (https://github.com/CanCanCommunity/cancancan)
gem 'cancancan'
# A gem adding sorting, reordering capabilities to an active_record model, allowing it to act as a list (http://github.com/brendon/acts_as_list)
gem 'acts_as_list'
# Turbolinks makes navigating your web application faster (https://github.com/turbolinks/turbolinks)
gem 'turbolinks', '~> 5'
# Use Rails render with Turbolinks (https://github.com/jorgemanrubia/turbolinks_render)
gem 'turbolinks_render'
# Slim is a template language. (http://slim-lang.com/)
gem 'slim'
# Simple HTTP and REST client for Ruby, inspired by microframework syntax for specifying actions. (https://github.com/rest-client/rest-client)
gem 'rest-client'
# Simple, efficient background processing for Ruby (http://sidekiq.org)
gem 'sidekiq'
# Complete geocoding solution for Ruby. (http://www.rubygeocoder.com)
gem 'geocoder'
# Collection of SEO helpers for Ruby on Rails. (http://github.com/kpumuk/meta-tags)
gem 'meta-tags'
# Intelligent search made easy with Rails and Elasticsearch (https://github.com/ankane/searchkick)
gem 'searchkick'
# Inertia adapter for Rails (https://github.com/inertiajs/inertia-rails)
gem 'inertia_rails'
# Markdown that smells nice (http://github.com/vmg/redcarpet)
gem 'redcarpet'
# A comprehensive slugging and pretty-URL plugin. (https://github.com/norman/friendly_id)
gem 'friendly_id'