-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
60 lines (54 loc) · 1.51 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
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
# rails gems
gem 'rails', '6.1.3.1'
gem 'puma', '~> 3.7'
gem 'sass-rails', '~> 5.0'
gem 'sassc', '2.1.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.2'
gem 'turbolinks', '~> 5'
gem 'jbuilder', '~> 2.5'
gem 'tzinfo-data'
gem 'mimemagic', github: 'mimemagicrb/mimemagic', ref: '01f92d86d15d85cfd0f20dabd025dcbd36a8a60f'
# app specific gems
gem 'bootstrap', '>=4.6', '<5.0.0'
gem "font-awesome-rails"
gem 'autoprefixer-rails'
gem 'jquery-rails'
gem 'yui-compressor'
gem 'json'
gem 'truncate_html'
gem 'kaminari', :git => 'https://github.com/kaminari/kaminari'
gem "paperclip", "~> 5.2.1"
gem 'simple_form'
gem 'lightbox-bootstrap-rails', '5.1.0.1'
gem 'pg'
gem 'summernote-rails', '~> 0.8.17.0', :git => 'https://github.com/summernote/summernote-rails.git'
gem 'scrollto-rails'
gem "devise", ">= 4.7.1"
gem 'rufus-scheduler'
gem "cocoon"
gem 'validates_email_format_of'
gem "nokogiri", ">= 1.11.0"
gem "typhoeus"
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
end
group :development do
gem 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'rails_real_favicon'
end
group :test do
gem 'capybara', '~> 2.13'
gem "minitest-rails", "~> 6.1.0"
gem 'selenium-webdriver'
gem 'rails-controller-testing'
gem 'database_cleaner'
end