-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
84 lines (71 loc) · 3.37 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
"https://github.com/#{repo_name}.git"
end
ruby '~> 3.0.0'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.1', '>= 6.1.7.8'
# Pg is the Ruby interface to the {PostgreSQL RDBMS}[http://www.postgresql.org/] (https://github.com/ged/ruby-pg)
gem 'pg'
# Use Puma as the app server
gem 'puma', '~> 5.6'
# Integrate SassC-Ruby with Rails!
# gem 'sassc-rails', '~> 2.1'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.7'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use Active Model has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Active Storage variant
# gem 'image_processing', '~> 1.2'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', require: false
# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible
# gem 'rack-cors'
# DSL for declaring params and options of the initializer (https://dry-rb.org/gems/dry-initializer)
# gem 'dry-initializer-rails'
# Easily generate fake data (https://github.com/faker-ruby/faker)
gem 'faker', '~> 2.16' # Used in db/seeds.rb
# ActiveModel validation for email. Including MX lookup and disposable email blacklist (https://github.com/micke/valid_email2)
gem 'valid_email2'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
# Use Pry as your rails console (https://github.com/rweng/pry-rails)
gem 'pry-rails'
# Walk the stack in a Pry session (https://github.com/pry/pry-stack_explorer)
gem 'pry-stack_explorer'
# Fast debugging with Pry. (https://github.com/deivid-rodriguez/pry-byebug)
gem 'pry-byebug'
# RSpec for Rails (https://github.com/rspec/rspec-rails)
gem 'rspec-rails'
# Performance testing matchers for RSpec (https://github.com/piotrmurach/rspec-benchmark)
gem 'rspec-benchmark'
end
group :profiling do
# A sampling call-stack profiler for ruby 2.2+ (http://github.com/tmm1/stackprof)
gem 'stackprof'
# Fast Ruby profiler (https://github.com/ruby-prof/ruby-prof)
gem 'ruby-prof' # Tracing memory profiler. Better on production/staging!
end
group :development do
# Benchmarks designed to performance test your ENTIRE site (https://github.com/schneems/derailed_benchmarks)
gem 'derailed_benchmarks' # , require: false
# Listen to file modifications (https://github.com/guard/listen)
gem 'listen', '~> 3.3'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
# A debugging tool for your Ruby on Rails applications. (https://github.com/rails/web-console)
# gem 'web-console'
end
group :test do
# # Strategies for cleaning databases using ActiveRecord. Can be used to ensure a clean state for testing. (https://github.com/DatabaseCleaner/database_cleaner-active_record)
gem 'database_cleaner-active_record'
# Monitor your Ruby Applications metrics via your test suite.
gem ''pig-ci-rails', github: 'JuPlutonic/pig-ci-rails'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]