-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
80 lines (73 loc) · 1.88 KB
/
Gemfile
File metadata and controls
80 lines (73 loc) · 1.88 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
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
source 'https://rubygems.org'
ruby "2.3.0"
gem 'rails', '4.2.4'
# Database
gem 'pg'
#Tagging
gem 'acts-as-taggable-on', '~> 3.4'
#User Authentication
gem 'devise'
gem 'bcrypt'
gem 'cancancan'
gem 'cancan_namespace'
gem 'symmetric-encryption'
#Used to create QR Codes
gem 'rqrcode'
#Used to create menu for user html editing
gem 'tinymce-rails'
#Pretty URLs
gem 'friendly_id', '~> 5.1.0'
gem 'public_activity'
#Background jobs
gem 'resque', :require => "resque/server"
gem 'resque-scheduler'
gem 'resque-pool'
gem 'resque-history'
gem 'resque-concurrent-restriction', :git => 'https://github.com/wr0ngway/resque-concurrent-restriction.git', :ref => 'b43082b'
#Assets
gem "chartkick"
gem "animate-rails"
gem "font-awesome-rails"
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'twitter-bootstrap-rails', :git => 'git://github.com/seyhunak/twitter-bootstrap-rails.git'
gem 'momentjs-rails', '>= 2.9.0'
gem 'bootstrap3-datetimepicker-rails', '~> 4.17.37'
gem 'jquery-datatables-rails', github: 'rweng/jquery-datatables-rails'
gem 'jbuilder', '~> 2.0'
gem 'uglifier', '>= 1.3.0'
gem 'sprockets'
gem 'sass-rails'
gem 'will_paginate'
gem "sass"
gem "compass"
gem 'compass-rails'
gem 'coffee-rails', '~> 4.1.0'
gem 'turbolinks'
gem 'bootstrap-daterangepicker-rails'
#File uploads
gem 'carrierwave'
gem "mini_magick"
group :production do
#Web Server
gem "passenger"
#Used by heroku
gem 'rails_12factor'
end
group :development do
gem 'yard-activerecord'
gem 'annotate'
gem 'rdoc'
gem "letter_opener"
gem "yard"
#deployment scripts
gem "capistrano"
gem 'capistrano-rails'
gem 'capistrano-bundler'
gem 'capistrano-passenger'
gem 'capistrano-rvm'
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 2.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
end