This repository was archived by the owner on Mar 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
62 lines (49 loc) · 1.41 KB
/
Gemfile
File metadata and controls
62 lines (49 loc) · 1.41 KB
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
source 'https://rubygems.org'
ruby '2.3.1'
gem 'rails', '>= 5.0.0', '< 5.1'
gem "i18n-js", ">= 3.0.0.rc11"
gem 'puma', '~> 3.0'
gem 'paperclip'
gem 'dotenv-rails'
gem 'devise'
gem 'eventbrite'
gem 'jbuilder', '~> 2.0'
gem 'enumerate_it'
# Active Record
gem 'pg', '~> 0.18'
# Assets managment
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'browserify-rails'
gem 'jquery-rails'
gem 'jquery-slick-rails', '~> 1.5', '>= 1.5.9.1'
gem 'bootstrap', '~> 4.0.0.alpha3'
gem 'sprockets-rails', '> 2.3.2'
gem 'react-rails'
gem 'rails-assets-leaflet', source: 'https://rails-assets.org'
gem 'rails-assets-leaflet-draw', source: 'https://rails-assets.org'
gem 'bootstrap-datepicker-rails'
gem 'rails-assets-chosen', source: 'https://rails-assets.org'
gem 'acts-as-taggable-on', '~> 4.0'
gem 'tagsinput-rails'
gem 'jquery-turbolinks'
gem 'rack-cors', :require => 'rack/cors'
gem 'activerecord-sortable'
gem 'jquery-ui-rails'
gem 'will_paginate', '~> 3.1.0'
gem 'active_model_serializers', '~> 0.10.0'
source 'https://rails-assets.org' do
gem 'rails-assets-tether', '>= 1.1.0'
end
group :development, :test do
gem 'byebug', platform: :mri
gem 'annotate'
end
group :development do
gem 'web-console'
gem 'listen', '~> 3.0.5'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]