-
Notifications
You must be signed in to change notification settings - Fork 40
/
Gemfile
190 lines (146 loc) · 2.99 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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
# Settings
# ========
source 'https://rubygems.org'
# Rails
# =====
gem 'rails', '~> 3.2.22.5' # Because it makes sense, and bundler fails otherwise
gem 'unicorn'
# Database
gem 'pg'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails'
gem 'sprockets'
gem 'coffee-rails'
gem 'uglifier'
gem 'compass-rails'
end
group :production do
gem 'therubyracer'
end
gem 'jquery-rails'
gem 'jquery-ui-rails'
# Development
# ===========
group :development do
# RDoc
gem 'rdoc'
gem 'quiet_assets'
# Deployment
gem 'capones_recipes'
# Debugging
gem 'better_errors'
gem 'binding_of_caller' # Needed by binding_of_caller to enable html console
end
# TODO:
# should go into :test group, workaround for old rails version
gem 'test-unit'
group :test, :development do
# Framework
gem 'rspec-rails'
# Matchers/Helpers
gem 'shoulda-matchers'
gem 'json_spec'
# Fixtures
gem 'factory_girl_rails'
gem 'database_cleaner'
# Browser
gem 'capybara'
gem 'selenium-webdriver'
gem 'poltergeist'
# Console
gem 'pry-rails'
gem 'pry-doc'
gem 'pry-byebug'
gem 'rspec-its'
gem 'rspec-activemodel-mocks'
end
group :test do
gem 'test_after_commit'
end
# Standard helpers
# ================
gem 'haml-rails'
# Navigation
gem 'simple-navigation'
# Styling
gem 'lyb_sidebar'
gem 'anjlab-bootstrap-rails', '~> 2.1.0', :require => 'bootstrap-rails'
gem 'bootstrap-datepicker-rails'
gem 'bootstrap-will_paginate'
# Form framework
gem 'simple_form'
gem 'select2-rails', '~> 3.5' # incompatible
# CRUD
gem 'will_paginate'
gem 'inherited_resources'
gem 'has_scope'
gem 'i18n_rails_helpers'
gem 'responders'
# Access Control
gem 'devise'
gem 'omniauth-google-oauth2'
gem 'faraday'
gem 'cancancan'
gem 'lyb_devise_admin'
gem 'apartment'
gem 'devise_cas_authenticatable'
# API
gem 'grape'
gem 'grape-entity'
# Data dump/restore
gem 'yaml_db'
gem 'rubyzip'
# Date/Time handling
gem 'validates_timeliness', '~> 3.0.14'
gem 'show_for'
# Locale setting
gem 'routing-filter'
# Application Settings
gem 'ledermann-rails-settings'
# Bookyt
# ======
# Accounting
gem 'has_accounts'
gem 'has_accounts_engine', '~> 3.0.0.beta13'
# Addresses
gem 'has_vcards'
# Uploads
gem 'carrierwave'
# In-Place Edit
gem 'best_in_place'
# PDF generation
gem 'pdfkit'
gem 'wkhtmltopdf-binary'
gem 'prawn', '~> 0.12.0' # API incompatible, missing templating
gem 'prawn_rails'
# Raiffeisen BookingImport
gem 'csv-mapper'
gem 'mt940_parser', :git => 'http://github.com/CyTeam/mt940_parser.git', :require => 'mt940'
# ESR support
gem 'aasm'
gem 'vesr'
# LSV+ support
gem 'lsv-plus'
# Search
gem 'pg_search'
# Tagging
gem 'acts-as-taggable-on', '~> 2.4.1' # API incompatible
# Plugins
# =======
# Uncomment to enable plugins
gem 'bookyt_salary'
gem 'bookyt_stock'
gem 'bookyt_projects'
# Monitoring
# ==========
gem 'settingslogic'
group :demo do
# Traffic
gem 'rack-google_analytics'
# Performance
#gem 'newrelic_rpm'
# Exceptions
#gem 'airbrake'
end