-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
50 lines (41 loc) · 1.32 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
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 'high_voltage', '~> 3.0'
gem "paperclip", git: "git://github.com/thoughtbot/paperclip.git"
gem 'geocoder'
gem 'devise'
gem "cancan"
gem 'ransack'
gem 'kaminari'
gem 'bootstrap-kaminari-views'
gem 'activeadmin', github: 'activeadmin'
gem 'active_skin'
gem 'active_admin_theme'
gem 'data-confirm-modal', github: 'ifad/data-confirm-modal', branch: 'bootstrap2'
gem 'ckeditor', github: 'galetahub/ckeditor'
gem 'bootstrap-datepicker-rails', '~> 1.6', '>= 1.6.4.1'
gem 'simple_form'
gem 'non-stupid-digest-assets', '~> 1.0.4'
gem 'wtf_lang'
gem 'rails', '~> 5.0.3'
gem 'puma', '~> 3.0'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.2'
gem 'jquery-rails'
gem 'turbolinks', '~> 5'
gem 'jbuilder', '~> 2.5'
gem 'mysql2', '>= 0.3.18', '< 0.5', :group => [:development, :test]
gem 'bcrypt', git: 'https://github.com/codahale/bcrypt-ruby.git', :require => 'bcrypt'
gem 'rails_12factor', group: :production
gem 'pg', '~> 0.21.0', group: :production
group :development, :test do
gem 'byebug', platform: :mri
end
group :development do
gem 'web-console', '>= 3.3.0'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]