-
-
Notifications
You must be signed in to change notification settings - Fork 79
/
Gemfile
43 lines (38 loc) · 825 Bytes
/
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
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
gem 'rails', '6.1.3.1'
gem 'bootstrap-sass'
gem 'bootswatch-rails'
gem 'devise', github: 'heartcombo/devise'
gem 'faraday'
gem 'font-awesome-rails'
gem 'google-analytics-rails'
gem 'hamlit'
gem 'jquery-rails'
gem 'kaminari'
gem 'omniauth'
gem 'omniauth-github'
gem 'omniauth-rails_csrf_protection'
gem 'pg'
gem 'puma'
gem 'rack-user_agent'
gem 'sassc-rails'
gem 'sentry-ruby'
gem 'sentry-rails'
gem 'sprockets'
gem 'sqldef-rails'
gem 'uglifier'
group :development do
gem 'foreman'
gem 'spring'
gem 'spring-commands-rspec'
gem 'listen'
end
group :development, :test do
gem 'factory_bot'
gem 'pry-rails'
gem 'rspec-rails'
end