forked from ZeusWPI/Gandalf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
147 lines (104 loc) · 2.71 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 4.0'
# We <3 New Relic
gem 'newrelic_rpm'
# Use sqlite3 as the database for Active Record
gem 'sqlite3'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.2'
# add annotations of schema inside models
gem 'annotate'
# Use form helpers, because we live in the future now
gem 'simple_form'
# Datagrid is nice
gem 'datagrid'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
group :test do
gem 'capybara'
gem 'poltergeist'
end
# Let's use devise for users
gem 'devise'
gem 'devise_cas_authenticatable'
gem 'omniauth-google-oauth2'
# Omniauth as extra development backdoor
gem 'omniauth-oauth2'
# Token authentication for partners
gem 'simple_token_authentication'
# CanCan is used for authorization
gem 'cancan'
gem 'httparty'
# Logging is awesome, and paper_trail even more
gem 'paper_trail', '~> 4.0.0.beta'
# Njam njam, IBAN
gem 'iban-tools'
group :production, :deployment do
gem 'puma'
end
# Barcodes
gem 'barcodes', git: "git://github.com/nudded/barcodes"
# Pagination
gem 'will_paginate', '~> 3.0'
gem 'will_paginate-bootstrap'
# WYSIWYG
gem 'ckeditor_rails'
# Statistics
gem 'chartkick'
# Attachements
gem 'paperclip', '~> 4.0'
gem 'spreadsheet'
# Run stuff in the background
gem 'daemons'
gem 'delayed_job', '~> 4.0'
gem 'delayed_job_active_record'
#
# Whenever cronjobs
gem 'whenever', require: false
# Coveralls
gem 'coveralls', require: false
# Deployment
# Stubbing http requests
gem 'webmock', require: false
# export to ical
gem 'ri_cal'
# Easy date validations
gem 'jc-validates_timeliness'
# Use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
gem 'airbrake'
gem 'rmagick'
# select2 is beautiful
gem 'select2-rails'
# Typeahead
gem 'twitter-typeahead-rails'
# Enum support with prefixes
gem 'simple_enum'
group :development do
gem 'rails-erd'
gem 'capistrano', '~> 3.1'
gem 'capistrano-rails', '~> 1.1'
gem 'capistrano-rvm'
gem 'capistrano-rbenv'
end
group :development, :test do
gem 'pry-byebug'
end
group :production do
gem 'mysql2' # Database
end