forked from blackcandy-org/blackcandy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
98 lines (71 loc) · 2.42 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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem "rails", "~> 7.0.0"
# Deliver assets for Rails
gem "propshaft", "~> 0.6.4"
# Install Turbo on Rails
gem "turbo-rails", "~> 1.3.0"
# Install Stimulus on Rails
gem "stimulus-rails", "~> 1.0.2"
# Bundle and process CSS in Rails
gem "cssbundling-rails", "~> 1.1.0"
# Bundle and transpile JavaScript in Rails
gem "jsbundling-rails", "~> 1.0.0"
# Use Puma as the app server
gem "puma", "~> 6.0.2"
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem "jbuilder", "~> 2.11.5"
# Get meta data from audio file
gem "wahwah", "~> 1.3.0"
# Use sidekiq for backgroud job
gem "sidekiq", "~> 7.0.0"
# Pagination
gem "pagy", "~> 5.6.6"
# Use redis on cache and sidekiq
gem "redis", "~> 4.0"
# For image attachment
gem "carrierwave", "~> 2.2.0"
# For API request
gem "httparty", "~> 0.17.0"
# For browser detection
gem "browser", "~> 2.6.1", require: "browser/browser"
# For searching
gem "ransack", "~> 3.2.1"
# For sortable list
gem "acts_as_list", "~> 1.0.2"
# For authentication
gem "authlogic", "~> 6.4.1"
gem "bcrypt", "~> 3.1.11"
# For sync on library changes
gem "listen", "~> 3.7.1"
# For postgresql database adapter
gem "pg", "~> 1.3.2"
# For sqlite database adapter
gem "sqlite3", "~> 1.5.0"
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", "~> 1.10.3", require: false
group :development, :test do
gem "standard", "~> 1.7"
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", platforms: %i[mri mingw x64_mingw]
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem "web-console", ">= 3.3.0"
# Memory profiler for ruby
gem "memory_profiler", "~> 0.9.13", require: false
# Help to kill N+1 queries and unused eager loading
gem "bullet", "~> 7.0.0"
end
group :test do
gem "capybara", "~> 3.38.0"
gem "cuprite", "~> 0.14.3"
gem "webmock", "~> 3.14.0", require: false
gem "simplecov", "~> 0.21.2", require: false
gem "simplecov-lcov", "~> 0.8.0", require: false
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]