-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
49 lines (43 loc) · 1.1 KB
/
Gemfile
File metadata and controls
49 lines (43 loc) · 1.1 KB
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
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 'bcrypt', '3.1.15'
gem 'bootstrap-sass', '3.4.1'
gem 'bootsy'
gem 'coffee-rails', '5.0'
gem 'figaro', '1.2'
gem 'highline'
gem 'jquery-rails', '4.4'
gem 'jquery-ui-rails', '6.0'
gem 'loofah', '2.9'
gem 'mini_magick', '4.11'
gem 'minitest', '5.14'
gem 'nokogiri', '1.11'
gem 'paperclip', '6.1'
gem 'progress_bar', '1.3.3'
gem 'rails', '6.1'
gem 'rails-controller-testing', '1.0.5'
gem 'rails-html-sanitizer', '1.3'
gem 'rack', '2.2.3'
gem 'rb-readline'
gem "recaptcha"
gem 'sass-rails', '6.0'
gem 'sqlite3', '1.4.2'
gem 'sunspot_rails', '2.5'
gem 'sunspot_solr', '2.5'
gem 'uglifier', '4.2'
gem 'web-console', '4.0', group: :development
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
# gem 'byebug', platform: :mri
gem 'byebug', '11.1'
end
group :development do
gem 'listen', '~> 3.0.5'
end
group :production do
gem 'pg', '1.2.3'
gem 'unicorn', '5.6'
end