forked from afimb/chouette2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
177 lines (142 loc) · 4.63 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
source 'https://rubygems.org'
gem 'bundler', '~> 1.17.3'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 4.2.11.1'
gem 'puma'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '~> 2.7.2'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.1.0'
# Use jquery as the JavaScript library
gem 'jquery-rails', '~> 4.0.5' # Update to v4 for Rails 4.2
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks', '~> 2.5.3'
# 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
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring', '~> 1.7.2', group: :development
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use unicorn as the app server
# gem 'unicorn'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
# Use debugger
# gem 'debugger', group: [:development, :test]
# API Rest
gem 'sawyer', '~> 0.6.0'
gem 'faraday_middleware', '~> 0.10.0'
gem 'dotenv-rails'
gem 'mini_racer'
gem 'pg', '~> 0.21'
gem 'activerecord-postgis-adapter', '~> 3.1.5'
gem 'polylines'
# Authentication
gem 'devise'
gem 'devise-encryptable'
gem 'devise_invitable'
gem 'omniauth'
gem 'omniauth-facebook'
gem 'omniauth-google-oauth2'
gem 'omniauth-openid-connect'
# Map, Geolocalization
gem 'map_layers', '0.0.5'
gem 'rgeo', '~> 0.5.2'
gem 'georuby-ext', '0.0.5'
gem 'georuby', '2.3.0' # Fix version for georuby-ext because api has changed
gem 'mimemagic'
# User interface
gem 'language_engine', git: 'https://github.com/Treize37/language_engine'
gem 'calendar_helper', '0.2.5'
gem 'cocoon'
gem 'formtastic', '2.3.1'
gem 'RedCloth'
gem 'simple_form', '~> 3.1.0'
gem 'font-awesome-sass', '~> 4.2.0'
#gem 'will_paginate-bootstrap', '~> 1.0.1'
gem 'breadcrumbs_on_rails'
# Format Output
gem 'json', '~> 1.8'
gem 'rubyzip', '~> 1.1.7'
gem 'roo'
# Controller
gem 'inherited_resources'
gem 'google-analytics-rails', '~> 1.1.0'
# Model
gem 'ransack'
gem 'squeel'
gem 'kaminari', '~> 0.16.3'
gem 'bootstrap-kaminari-views', '~> 0.0.5'
gem 'kaminari-i18n', '~> 0.3.2'
gem 'enumerize', '~> 0.10.0'
#gem 'foreigner', '~> 1.7.4'
gem 'deep_cloneable', '~> 2.0.0'
gem 'acts-as-taggable-on', '>= 3'
gem 'acts_as_list', '~> 0.6.0'
gem 'acts_as_tree', '~> 2.1.0', require: 'acts_as_tree'
gem 'rabl', '~> 0.13.1'
gem 'delayed_job_active_record'
# gem 'devise-async'
gem 'apartment'
gem 'letter_opener'
gem 'migration_data'
gem 'responders', '~> 2.0'
gem 'pundit'
group :development do
gem 'capistrano', '2.13.5'
gem 'capistrano-ext'
gem 'guard'
gem 'guard-rspec'
gem 'rails-erd'
# MetaRequest is incompatible with rgeo-activerecord
# gem 'meta_request'
gem 'quiet_assets', '~> 1.0'
gem 'simplecov', '~> 0.10.0'
gem 'web-console', '~> 2.0'
platforms :ruby_20, :ruby_21, :ruby_22, :ruby_23 do
#gem 'better_errors'
gem 'binding_of_caller'
end
end
group :test, :development do
gem 'byebug'
gem 'rspec-rails', '~> 3.4.2'
gem 'fakeweb'
gem 'capybara', '~> 2.8.1'
gem 'poltergeist'
gem 'launchy'
gem 'factory_girl_rails', '~> 4.0'
gem 'rb-inotify', require: RUBY_PLATFORM.include?('linux') && 'rb-inotify'
gem 'rb-fsevent', require: RUBY_PLATFORM.include?('darwin') && 'rb-fsevent'
gem 'transpec'
gem 'database_cleaner'
gem 'shoulda-matchers', '~> 2.8.0'
end
# IEVKIT
gem 'ievkit', '~> 0.3.0' #, git: 'https://github.com/afimb/ievkit.git', branch: 'develop'
gem 'ievkit_views', '~> 0.2.2' #, git: 'https://github.com/afimb/ievkit_views.git', branch: 'develop'
# I18n
gem 'rails-i18n', '~> 4.0.0'
gem 'devise-i18n'
gem 'chouette2-i18n', git: 'https://github.com/afimb/chouette2-i18n.git'
gem 'chouette-projects-i18n', git: 'https://github.com/afimb/chouette-projects-i18n.git'
# Rails Assets
source 'https://rails-assets.org' do
gem 'rails-assets-morrisjs', '~> 0.5.1'
gem 'rails-assets-raphael', '~> 2.1.3'
gem 'rails-assets-footable', '~> 2.0.3'
# Use twitter bootstrap resources
gem 'rails-assets-bootstrap-sass-official', '~> 3.3.7'
gem 'rails-assets-tagmanager', '~> 3.0.1.0'
gem 'rails-assets-typeahead.js', '~> 0.10.5'
gem 'rails-assets-typeahead.js-bootstrap3.less'
gem 'rails-assets-respond'
gem 'rails-assets-eonasdan-bootstrap-datetimepicker', '~> 3.1.4'
gem 'rails-assets-jquery-tokeninput', '~> 1.7.0'
gem 'rails-assets-modernizr', '~> 2.0.6'
gem 'rails-assets-jquery-ui', '~> 1.11.4'
end