-
Notifications
You must be signed in to change notification settings - Fork 10
/
Gemfile
93 lines (78 loc) · 1.88 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
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.2.1'
# Core
gem 'rails', '6.1.7.3'
gem 'pg'
gem 'puma'
gem 'sassc-rails'
gem 'terser'
gem 'webpacker'
# gem 'mini_racer'
gem 'jbuilder'
# gem 'capistrano-rails', group: :development
gem 'bootsnap'
gem 'unicorn'
gem 'dotenv-rails'
# Layout
gem 'font-awesome-rails'
gem 'rails-i18n'
gem 'slim-rails'
gem 'bulma-rails', '0.7.4'
# API
gem 'friendly_id'
gem 'ransack'
gem 'kaminari'
# Authentication
gem 'devise'
gem 'omniauth', '~> 1.9.0'
gem 'omniauth-twitter', '~> 1.4.0'
gem 'omniauth-facebook', '~> 6.0.0'
gem 'omniauth-google-oauth2', '~> 0.6.0'
gem 'omniauth-tumblr', '~> 1.2'
gem 'omniauth-github', '~> 1.3.0'
# Management
gem 'cancancan'
gem 'rails_admin'
gem 'rails_admin-i18n'
gem 'newrelic_rpm'
# Upload
gem 'carrierwave'
gem 'fog-openstack'
gem 'mime-types'
gem 'rmagick'
# Counter
gem 'impressionist', git: 'https://github.com/charlotte-ruby/impressionist.git', ref: '46a582ff8cd3496da64f174b30b91f9d97e86643'
gem 'counter_culture', '~> 1.8'
# Backup
gem 'dropbox_api'
gem 'whenever', require: false
# Notification
gem 'exception_notification'
gem 'slack-notifier'
gem 'psych', '~> 3.1'
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'capybara', '~> 2.13'
gem 'selenium-webdriver'
gem 'pry-rails'
gem 'pry-byebug'
gem 'pry-doc'
end
group :development do
gem 'web-console', '>= 3.3.0'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'bcrypt', '~> 3.1.7'
gem 'bcrypt_pbkdf'
gem 'ed25519'
gem 'better_errors'
# gem 'capistrano', require: false
# gem 'capistrano-rails', require: false
# gem 'capistrano-bundler', require: false
# gem 'capistrano3-puma', require: false
# gem 'capistrano-rbenv', require: false
end