You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: rails_docker/Gemfile.txt
+17-26Lines changed: 17 additions & 26 deletions
Original file line number
Diff line number
Diff line change
@@ -5,28 +5,19 @@ ruby '2.6.2'
5
5
gem 'rails', '5.2.3' # Latest stable
6
6
gem 'pg' # Use Postgresql as database
7
7
gem 'puma' # Use Puma as the app server
8
-
gem 'active_model_serializers' # ActiveModel::Serializer implementation and Rails hooks
9
-
gem 'carrierwave' # Classier solution for file uploads for Rails
10
-
gem 'carrierwave-aws' # Use the officially supported AWS-SDK library for S3 storage
11
8
gem 'mini_magick' # A ruby wrapper for ImageMagick or GraphicsMagick command line
12
-
gem 'kaminari' # A Scope & Engine based, clean, powerful, customizable and sophisticated paginator for Rails 3 and 4
13
-
gem 'chronic' # Chronic is a pure Ruby natural language date parser.
9
+
gem 'pagy' # A pagination gem that is very light and fast
14
10
gem 'paranoia', '2.4.1' # Paranoia is a re-implementation of acts_as_paranoid for Rails 3 and Rails 4. Soft-deletion of records
15
11
gem 'ffaker' # A library for generating fake data such as names, addresses, and phone numbers.
16
12
gem 'fabrication' # Fabrication generates objects in Ruby. Fabricators are schematics for your objects, and can be created as needed anywhere in your app or specs.
17
13
gem 'sidekiq' # background processing for Ruby
18
14
gem 'bootsnap', require: false # Reduces boot times through caching; required in config/boot.rb
19
15
20
-
# Admin
21
-
gem 'rails_admin'
22
-
23
16
# Authentications & Authorizations
24
17
gem 'devise' # Authentication solution for Rails with Warden
25
18
gem 'pundit' # Minimal authorization through OO design and pure Ruby classes
26
19
27
20
# Assets
28
-
gem 'jquery-rails' # Use jquery as the JavaScript library
29
-
gem 'font-awesome-sass' # Font-Awesome Sass gem for use in Ruby/Rails projects
30
21
gem 'sass-rails' # SASS
31
22
gem 'uglifier'
32
23
@@ -36,29 +27,22 @@ group :development do
36
27
gem 'binding_of_caller' # Retrieve the binding of a method's caller in MRI 1.9.2+
37
28
gem 'awesome_print' # Pretty print your Ruby objects with style -- in full color and with proper indentation
38
29
gem 'guard-rubocop'
30
+
gem 'guard-rspec' # Auto-run specs
39
31
gem 'roadie-rails' # Mailers
40
32
gem 'rubycritic', require: false # A Ruby code quality reporter
41
-
gem 'brakeman', require: false # A static analysis security vulnerability scanner for Ruby on Rails applications
33
+
gem 'spring' # Spring speeds up development by keeping your application running in the background.
34
+
gem 'spring-commands-rspec' # This gem implements the rspec command for Spring.
35
+
gem 'spring-watcher-listen', '2.0.1' # Makes Spring watch the filesystem for changes using Listen
42
36
end
43
37
44
38
group :development, :test do
45
39
gem 'bullet' # help to kill N+1 queries and unused eager loading
46
40
gem 'figaro' # Simple Rails app configuration
47
-
gem 'rspec-rails' # Rails testing engine
48
-
gem 'guard-rspec' # Auto-run specs
49
-
gem 'shoulda-matchers' # Tests common Rails functionalities
50
-
gem 'capybara', '>= 2.15' # Integration testing
51
-
gem 'selenium-webdriver', '3.7.0' # Ruby bindings for Selenium/WebDriver
52
-
gem 'database_cleaner' # Use Database Cleaner
53
-
54
41
gem 'pry-rails' # Call 'binding.pry' anywhere in the code to stop execution and get a debugger console
55
-
gem 'spring' # Spring speeds up development by keeping your application running in the background.
56
-
gem 'spring-commands-rspec' # This gem implements the rspec command for Spring.
57
-
gem 'spring-watcher-listen', '2.0.1' # Makes Spring watch the filesystem for changes using Listen
58
42
gem 'listen', '3.1.5' # Listens to file modifications
59
43
gem 'letter_opener' # Preview mail in the browser instead of sending.
60
-
61
44
gem 'sassc-rails' # Gem to generate scss source maps
45
+
gem 'brakeman', require: false # A static analysis security vulnerability scanner for Ruby on Rails applications
0 commit comments