forked from dyve-agency/zeitkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
108 lines (78 loc) · 2.17 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
ruby "2.1.2"
source 'https://rubygems.org'
gem 'rails', '4.1.6'
gem 'pg'
gem 'slim'
gem 'slim-rails'
gem 'sorcery', git: 'https://github.com/NoamB/sorcery.git'
gem 'simple_form', git: "https://github.com/plataformatec/simple_form.git"
# Use jquery as the JavaScript library
gem 'jquery-rails'
gem 'cancancan', git: "https://github.com/CanCanCommunity/cancancan.git"
gem 'newrelic_rpm'
gem 'redcarpet'
gem 'rack-force_domain'
gem 'money'
gem 'pdfkit', git: "https://github.com/pdfkit/pdfkit.git"
gem 'fullcontact'
gem 'jbuilder'
gem "permanent_records", "~> 3.1.3"
gem 'validates_email_format_of'
# Wkhtmltopdf
gem 'wkhtmltopdf-binary', '~> 0.9.9.3'
# Managing startup behavior of App
gem 'foreman'
# Octokit gem for github
gem 'octokit'
# Omniauth Github
gem 'omniauth'
gem 'omniauth-github'
# 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"
# 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"
gem 'groupdate', git: "https://github.com/ankane/groupdate.git"
# Angular JS
gem 'angularjs-rails'
gem 'ng-rails-csrf'
gem 'angularjs-rails-resource', '~> 1.1.1'
# Data to the client
gem 'gon'
# Attr accessible
gem 'protected_attributes', github: 'rails/protected_attributes'
# Nicer service classes
gem "virtus"
# Serializers for models
gem 'active_model_serializers'
# Decorators
gem 'draper', git: "https://github.com/drapergem/draper.git"
# CSS mixins
gem 'bourbon'
gem "font-awesome-rails", git: "https://github.com/bokmann/font-awesome-rails.git"
gem 'dotiw'
# Moment.js lib
gem 'momentjs-rails'
group :development do
gem 'quiet_assets'
gem 'sqlite3'
gem 'pry-rails'
gem 'coffee-rails'
gem 'uglifier'
end
group :development, :test do
gem 'dotenv-rails'
gem 'railroady'
end