forked from ekylibre/ekylibre
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
219 lines (169 loc) · 4.77 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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
source 'https://rubygems.org'
ruby '2.2.3'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.7.1'
# Database adapters
gem 'pg' # Needed for some tasks
gem 'activerecord-postgis-adapter', '>= 3.0.0'
# Multi-tenancy
gem 'apartment', '~> 1.0.0', '< 2.0'
gem 'apartment-sidekiq'
# Ruby syntax extensions
gem 'possibly'
# Code manipulation
gem 'code_string'
gem 'charlock_holmes'
gem 'browser'
gem 'actionpack-xml_parser'
# Manage env vars
gem 'figaro'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.1.0'
# See https://github.com/rails/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', '~> 2.0'
gem 'jquery-turbolinks'
# jQuery UI Javascript framework
gem 'jquery-ui-rails'
# gem 'jquery_mobile_rails'
gem 'jquery-scrollto-rails'
gem 'momentjs-rails', '>= 2.9.0'
gem 'bootstrap3-datetimepicker-rails'
# Forms helper
gem 'formize', '~> 2.1.0'
# gem 'codemirror-rails'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc
# gem 'rails-api'
gem 'kaminari'
# Freeze time for demo and/or tests
gem 'timecop'
# Manage daemons
gem 'foreman'
# Background jobs
gem 'sidekiq', '>= 4.0'
gem 'sidekiq-cron', '>= 0.4.0'
gem 'sidekiq-unique-jobs'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Unicorn as the app server
gem 'unicorn', group: :production
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
# Exception management
gem 'exception_notification'
# Views helpers
gem 'haml'
gem 'simple_calendar'
gem 'active_list', '>= 6.7.0' # , path: "../active_list"
# Models helpers
gem 'uuidtools'
gem 'acts_as_list'
gem 'state_machine'
gem 'awesome_nested_set', '~> 3.0.0'
gem 'enumerize'
gem 'jc-validates_timeliness', '~> 3.1.1'
gem 'deep_cloneable', '~> 2.2.1'
# Authentication & Authorization
gem 'devise'
gem 'devise_invitable'
gem 'devise-i18n-views'
gem 'omniauth'
gem 'omniauth-oauth2'
# Attachments
gem 'paperclip'
gem 'paperclip-document', '> 0.0.8'
# Forms
gem 'simple_form', '~> 3.2.0'
gem 'cocoon'
gem 'remotipart', '~> 1.2'
# I18n and localeapp
gem 'i18n-complements', '>= 0.0.14'
gem 'http_accept_language'
gem 'i18n-js', '>= 3.0.0.rc12'
gem 'humanize'
# XML Parsing/Writing, HTML extraction
gem 'nokogiri', '~> 1.6.0'
# Parse LALR or LR-1 grammars
gem 'treetop'
# Reporting
# Need rjb which need openjdk-7-jdk (sudo apt-get install openjdk-7-jdk)
gem 'beardley', '~> 1.3.0' # , path: "../beardley"
gem 'beardley-barcode'
gem 'beardley-batik'
gem 'beardley-charts'
gem 'beardley-groovy'
gem 'beardley-xml'
gem 'beardley-open_sans'
# Import/Export
gem 'ofx-parser', git: 'https://github.com/lcoq/ofx-parser.git', branch: 'master'
gem 'rgeo-shapefile'
gem 'rgeo-geojson'
gem 'rubyzip'
gem 'roo'
gem 'sepa_king'
# gem 'sepa_king', path: '/home/jonathan/Workspace/sepa_king'
gem 'rodf'
# Demo data
gem 'ffaker', '>= 2.0.0'
# Reading RSS feeds
gem 'feedjira', require: false
# Adds colors in terminal
gem 'colored' # , require: false
# S/CSS Framework
gem 'bootstrap-sass', '~> 3.1'
gem 'twitter-typeahead-rails'
# Iconic font
gem 'agric', '~> 3.0'
# Web services
gem 'mechanize'
gem 'savon'
gem 'rubyntlm', '>= 0.3.2'
gem 'rest-client', require: false
gem 'luhn'
group :development do
gem 'quiet_assets'
# gem 'rack-mini-profiler'
# Code metrics
gem 'rails_best_practices', require: false
gem 'rubocop', require: false
# Webservers
gem 'thin'
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 3.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'letter_opener'
end
group :development, :test do
gem 'pry-rails'
gem 'pry-byebug'
gem 'pry-inline'
gem 'teaspoon-jasmine'
end
group :test do
gem 'shoulda-context'
gem 'capybara'
gem 'capybara-webkit'
gem 'selenium-webdriver'
gem 'database_cleaner'
gem 'coveralls', '>= 0.6', require: false
gem 'codacy-coverage', require: false
gem 'minitest-reporters'
end
# Load Gemfile.local, Gemfile.plugins, plugins', and custom Gemfiles
gemfiles = Dir.glob File.expand_path('../{Gemfile.local,Gemfile.plugins,lib/plugins/*/Gemfile}', __FILE__)
gemfiles << ENV['CUSTOM_PLUGIN_GEMFILE'] unless ENV['CUSTOM_PLUGIN_GEMFILE'].nil?
gemfiles.each do |file|
next unless File.readable?(file)
eval_gemfile(file)
end