-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
94 lines (69 loc) · 3.85 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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.1.2"
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem "rails", "7.0.4.1"
# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
gem "sprockets-rails", "3.4.2"
# Use postgresql as the database for Active Record
gem "pg", "1.4.5"
# Use the Puma web server [https://github.com/puma/puma]
gem "puma", "5.6.5"
# Bundle and transpile JavaScript [https://github.com/rails/jsbundling-rails]
gem "jsbundling-rails", "1.1.1"
# Bundle and process CSS [https://github.com/rails/cssbundling-rails]
gem "cssbundling-rails", "1.1.2"
# Use Redis adapter to run Action Cable in production
# gem "redis", "~> 4.0"
# Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis]
# gem "kredis"
# Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword]
# gem "bcrypt", "~> 3.1.7"
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", "1.2022.5", platforms: %i[mingw mswin x64_mingw jruby]
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", "1.15.0", require: false
# Use Grape to create a REST API and generate a Swagger UI to interact with the endpoints
gem "grape", "1.6.2"
gem "grape-entity", "0.10.2"
gem "grape-swagger", "1.5.0"
gem "grape-swagger-rails", "0.3.1"
# Use Sass to process CSS
# gem "sassc-rails"
# Autoload dotenv in Rails [https://github.com/bkeepers/dotenv]
gem "dotenv-rails", "2.8.1"
# Use Devise to handle User registration and authentication
gem "devise", "4.8.1"
# Use Doorkeeper to protect Grape endpoints by using OAuth2
gem "doorkeeper", "5.6.2"
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", "1.6.3", platforms: %i[mri mingw x64_mingw] # HINT: Version 1.7.0 needs irb of at least 1.5.0
gem "irb", "1.4.2" # HINT: Version 1.4.3 breaks ruby-debug-ide with version 3.0.0.beta.5
# Ruby Style Guide, with linter & automatic code fixer [https://github.com/testdouble/standard]
gem "standard", "1.19.1", require: false
gem "rubocop-rails", "2.17.3", require: false # [https://docs.rubocop.org/rubocop-rails/]
gem "rubocop-rspec", "2.16.0 ", require: false # [https://docs.rubocop.org/rubocop-rspec/]
gem "rubocop-thread_safety", "0.4.4", require: false # [https://github.com/rubocop/rubocop-thread_safety]
# Behaviour-Driven Development tool for the TDD part focusing on the documentation and design aspects of TDD [https://relishapp.com/rspec/]
gem "rspec-rails", "6.0.1" # RSpec for Rails 5+ [https://relishapp.com/rspec/rspec-rails/docs]
gem "rails-controller-testing", "1.0.5" # Needed for Controller tests [https://github.com/rails/rails-controller-testing]
gem "shoulda-matchers", "5.2.0" # Simple One-Liner Tests for Rails [https://matchers.shoulda.io/]
gem "factory_bot_rails", "6.2.0" # fixtures replacement with a straightforward definition syntax, support for multiple build strategies and support for multiple factories for the same class [https://github.com/thoughtbot/factory_bot_rails]
end
group :development do
# Use console on exceptions pages [https://github.com/rails/web-console]
gem "web-console", "4.2.0"
# Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
# gem "rack-mini-profiler"
# Speed up commands on slow machines / big apps [https://github.com/rails/spring]
# gem "spring"
# bundler-audit provides patch-level verification for Bundled apps. [https://rubydoc.info/gems/bundler-audit/frames]
gem "bundler-audit", "0.9.1"
end
group :test do
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
gem "capybara", "3.38.0"
gem "selenium-webdriver", "4.5.0"
gem "webdrivers", "5.2.0"
end