-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
60 lines (44 loc) · 1006 Bytes
/
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
source 'https://rubygems.org'
gem 'rails', '~> 6.0.0'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
gem 'jquery-rails'
gem 'react-rails'
gem 'font-awesome-rails'
gem 'bootstrap-sass'
gem 'coffee-script'
gem 'coffee-script-source', git: 'https://github.com/jewel/coffee-script-source'
end
group :production do
gem 'mysql2'
end
group :development do
gem 'thin'
gem 'pry'
gem 'rb-readline'
gem 'sqlite3'
end
gem 'mini_magick'
gem 'exifr'
gem 'zipline'
gem 'active_model_serializers'
gem 'haml-rails'
gem 'devise'
gem 'trestle'
gem 'trestle-auth'
gem 'rgeo'
gem 'rgeo-geojson'
gem 'delayed_job_active_record'
gem 'jwt'
gem 'RubyInline', require: 'inline'
gem 'httparty'
gem 'oj'
gem 'net-smtp', require: false
gem 'net-pop', require: false
gem 'net-imap', require: false