-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
199 lines (164 loc) · 5.39 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
ruby '3.1.4'
source 'https://rubygems.org'
git_source(:bitbucket) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://bitbucket.org/#{repo_name}.git"
end
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
## Bundler
gem 'bundler', '>= 2.3.12'
## Environment
gem 'dotenv-rails', require: 'dotenv/rails-now', bitbucket: "majioa/dotenv"
## Core
gem "rails", "~> 7.0.0", ">= 7.0.4.1"
gem 'pg'
##NOTE http://mikecoutermarsh.com/2013/09/22/using-hstore-with-rails-4/
# gem 'postgres_ext'
### Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 2.7.2'
### JS and CSS bunding
gem 'redcarpet'
## Build JSON APIs with ease. Read more: https://bitbucket.com/rails/jbuilder
# gem 'jbuilder', '~> 2.7'
## bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 1.0.0', group: :doc
gem 'rdoc', '~> 6.3.2', group: :doc
# gem 'globalize'
# gem 'globalize-versioning'
gem "figaro"
## Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# caching
## Use Redis adapter to run Action Cable in production
## cache, session, rack / json, with usage delayed_jobs
gem 'hiredis', '~> 0.6'
gem 'redis', '~> 4.0', require: %w(redis redis/connection/hiredis)
gem 'redis-rails'#, bitbucket: 'redis-store/redis-rails'
gem 'redis-rack-cache'
gem 'sidekiq', ">= 6.4.0", require: %w(sidekiq sidekiq/web)
gem 'sidekiq-worker-killer'
gem 'sidekiq-limit_fetch'
gem "jsonize", "~> 0.2"
# gem 'jsonize', path: '/usr/local/home/majioa/git/jsonize'
# gem "jsonize", bitbucket: 'majioa/jsonize', ref: '96c8b77'
# gem "redisize", ">= 0.1.4", "~> 0.1"
# gem 'redisize', path: '/usr/local/home/majioa/git/redisize'
gem 'redisize', '~> 0.1.5'#, bitbucket: 'majioa/redisize', ref: 'be60757'
## controllers
gem 'has_scope', '>= 0.7.2'
## models
gem 'validate_url'
gem 'activerecord_json_validator'
gem 'attribute-defaults'
gem 'addressable'
gem 'acts_as_list'
## JSON
gem 'oj'
## pagination
gem 'kaminari', '>= 1.1.1'
## authentication
gem 'jwt'
## authorization
gem 'pundit'
## logging
#gem 'rdoba', path: '/usr/local/home/majioa/git/rdoba'
# gem 'rdoba', git: 'https://bitbucket.com/3aHyga/rdoba.git'
gem 'rdoba', '~> 0.9.4'
## orthodox
gem 'when_easter'
## data
gem 'activerecord-import', '~> 1.4.1'
gem 'zero_downtime_migrations', bitbucket: 'majioa/zero_downtime_migrations', ref: 'devel'
# gem 'zero_downtime_migrations', path: '/usr/local/home/majioa/git/zero_downtime_migrations'
# gem 'active_record_extended'
## pdf
gem 'prawn', git: 'https://bitbucket.com/majioa/prawn.git', ref: '10e29240e'
## deploy start
gem 'foreman'
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", require: false
# standard rails assets pipeline
gem 'sassc-rails'
gem 'sprockets-rails'
## api
# gem 'tiun', path: '/usr/local/home/majioa/git/tiun'
# gem 'tiun', bitbucket: 'majioa/tiun', ref: '2820b93'
gem 'tiun', '~> 0.0.1'
# sitemap
gem 'sitemap_generator'
# images
gem 'carrierwave', '~> 3.0.5'
gem 'carrierwave-base64'
gem 'file_validators'
gem 'rmagick'
# fix
gem 'rack', bitbucket: "majioa/rack", ref: "2.2.8"
# gem 'rack', path: '/usr/local/home/majioa/git/rack'
group :development do
gem "capistrano", "~> 3.17", require: false
gem "capistrano3-nginx", require: false, git: "https://github.com/treenewbee/capistrano3-nginx.git"
gem 'capistrano-bundler'
gem "capistrano-rails", "~> 1.6", require: false
gem 'capistrano-rvm'
gem 'capistrano-rake'
gem "capistrano-systemd-multiservice", require: false, git: "https://github.com/majioa/capistrano-systemd-multiservice.git"
gem "capistrano-db-tasks", require: false, github: "majioa/capistrano-db-tasks", ref: "devel"
# gem "capistrano-db-tasks", require: false, path: '/usr/local/home/majioa/git/capistrano-db-tasks'
gem 'dry_crud' , '>= 6.0.0' # then rails generate dry_crud [--templates haml] [--tests rspec]
gem 'web-console', '~> 4.2'
gem 'pattern_generator', '>= 0.1.0'
# deploy
gem 'ed25519', '~> 1.2'
gem 'bullet'
gem 'bcrypt_pbkdf', '~> 1.1'
gem 'rubocop'
gem 'rubocop-rails'
gem "debug"
end
group :development, :test do
gem 'ruby-prof', github: 'majioa/ruby-prof', ref: 'devel' # raises rack error in 7.0.4 in dashboard when no user session
gem "factory_bot_rails", ">= 5.1.1"
gem 'pry', '~> 0.14', '>= 0.14.1'
gem 'pry-rails', '>= 0.3.9'
gem 'pry-remote'
gem 'pry-stack_explorer', '>= 0.6.1'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring', '~> 4.0'
gem 'spring-commands-cucumber'
gem 'spring-watcher-listen', '~> 2.1'
gem 'faker'
gem 'ffaker'
gem 'bundler-audit'
gem 'faraday', '~> 1.0'
end
group :test do
gem 'cucumber-rails', '~> 2.6.1', require: nil
gem 'shoulda-matchers', '~> 4.0'
gem 'shoulda-matchers-cucumber', '~> 1.0', '>= 1.0.1'
gem 'rspec-expectations'
gem 'simplecov', '~> 0.21'
gem 'simplecov_json_formatter'
gem 'database_cleaner-active_record'
gem 'database_cleaner-redis'
gem "launchy"
gem "capybara"
# gem "selenium-webdriver"
# gem "webdrivers"
gem "email_spec"
end
group :production, :staging do
gem 'puma', '~> 5.6'
gem 'sentry-rails'
gem 'sentry-ruby', '~> 5.3', '>= 5.3.1'
gem 'sentry-sidekiq'
gem "rack-cors", require: "rack/cors"
gem 'snappy'
# gem 'redis-rack-cache'
end
group :production, :staging, :development do
gem "jsbundling-rails"
gem "cssbundling-rails"
end