-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
62 lines (52 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
51
52
53
54
55
56
57
58
59
60
61
62
source 'https://rubygems.org'
gem 'rails', '4.2.4'
# gem 'sqlite3'
gem 'pg'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem "font-awesome-rails"
gem 'devise'
gem "breadcrumbs_on_rails"
gem 'annotate'
# DatePicker
gem 'momentjs-rails', '>= 2.9.0'
gem 'bootstrap3-datetimepicker-rails', '~> 4.17.37'
gem 'jquery-ui-rails'
# gem 'jquery-turbolinks'
gem 'best_in_place', '~> 3.0.1'
gem 'jquery-minicolors-rails'
# Data tables
gem 'jquery-datatables-rails', git: "[email protected]:rweng/jquery-datatables-rails.git", branch: "master"
gem 'ajax-datatables-rails', git: '[email protected]:antillas21/ajax-datatables-rails.git', branch: 'legacy'
# Webservers
# gem 'puma'
gem "passenger"
gem 'premailer-rails'
gem 'redis'
gem 'redis-namespace'
gem 'redis-rails'
gem 'redis-rack-cache'
gem "paperclip", git: "[email protected]:thoughtbot/paperclip.git"
group :development, :test do
gem 'byebug'
end
group :development do
gem "rack-mini-profiler", require: false
gem 'web-console', '~> 2.0'
gem 'spring'
gem "letter_opener"
end
gem 'bootstrap-sass'
gem 'high_voltage'
gem 'simple_form'
group :development do
gem 'better_errors'
gem 'binding_of_caller', :platforms=>[:mri_21]
gem 'hub', :require=>nil
gem 'quiet_assets'
gem 'rails_layout'
end