-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathGemfile
126 lines (91 loc) · 2.68 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
ruby "2.5.5"
source 'https://rubygems.org'
gem 'bundler'
gem 'rails', '~> 4.2.0'
gem 'pg'
gem 'slim'
gem 'slim-rails'
gem 'sorcery', git: 'https://github.com/NoamB/sorcery.git', tag: 'v0.9.1'
gem 'simple_form', '< 4.0'
# Use jquery as the JavaScript library
gem 'jquery-rails'
gem 'cancancan', git: "https://github.com/CanCanCommunity/cancancan.git", tag: 'v1.13.1'
gem 'airbrake', '~> 6.2'
gem 'redcarpet'
gem 'rack-force_domain'
gem 'money-rails'
gem 'pdfkit', git: "https://github.com/pdfkit/pdfkit.git"
gem 'jbuilder'
gem "permanent_records", "~> 3.1.3"
gem 'validates_email_format_of'
# Necessary since 4.2.0 to use 'respond_to'
gem "responders"
gem 'contact_us', '~> 1.0.1'
# Session store and cache
gem 'redis-rails', '~> 5.0.2'
gem 'redis-store', '>= 1.4.0'
# Wkhtmltopdf
gem 'wkhtmltopdf-binary', '~> 0.9.9.3'
# Managing startup behavior of App
gem 'foreman'
# Octokit gem for github
gem 'octokit'
# Use bootstrap as the style framework
gem 'bootstrap-sass', '~> 3.3.1'
gem 'sass-rails', '>= 3.2'
# Bootstrap helpers
gem "rails-bootstrap-helpers", git: "https://github.com/Tretti/rails-bootstrap-helpers.git"
# Scheduled jobs
gem "whenever"
# Mergint two pdfs
gem "prawn"
# JS precompiler
# gem "therubyracer"
# Pagination
gem 'will_paginate-bootstrap', git: "https://github.com/bootstrap-ruby/will_paginate-bootstrap.git", tag: 'v1.0.1'
# Creating nested forms easily
gem "nested_form", git: "https://github.com/hendricius/nested_form.git"
# Creating charts
gem 'chartkick', git: "https://github.com/ankane/chartkick.git", tag: 'v2.2.5'
gem 'groupdate', git: "https://github.com/ankane/groupdate.git", tag: 'v2.5.3'
# Angular JS
gem 'angularjs-rails'
gem 'ng-rails-csrf'
gem 'angularjs-rails-resource', '~> 1.1.1'
# Data to the client
gem 'gon'
# One time Announcement
gem "starburst"
# Attr accessible
gem 'protected_attributes', github: 'rails/protected_attributes'
# Nicer service classes
gem "virtus"
# Serializers for models
gem 'active_model_serializers', git: "https://github.com/rails-api/active_model_serializers.git", branch: 'e2ded594d31fa97201c3e2fa1106708d68d86751'
# Decorators
gem 'draper', '~> 2.1.0'
# CSS mixins
gem 'bourbon'
gem "font-awesome-rails", git: "https://github.com/bokmann/font-awesome-rails.git", tag: 'v4.6.1.0'
gem 'dotiw'
# Moment.js lib
gem 'momentjs-rails'
group :development do
gem 'quiet_assets'
gem 'sqlite3'
gem 'pry-rails'
gem 'uglifier'
gem "better_errors"
gem 'binding_of_caller'
gem 'dotenv'
end
group :test do
gem 'pry-rails'
gem 'simplecov'
gem 'rspec-rails', '~> 3.6'
end
group :production do
gem 'puma'
gem 'rails_12factor'
end
gem 'datetimepicker-rails', github: 'zpaulovics/datetimepicker-rails', tag: 'v4.7.16', submodules: true