-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathGemfile
88 lines (73 loc) · 1.89 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
ruby '1.9.3'
source 'http://rubygems.org'
gem 'rails', '3.2.18'
gem 'json', '~> 1.7.7'
# Pagination
gem 'will_paginate', '~> 3.0'
# Authentication
gem 'devise', '= 2.2.3'
# Authorization
gem 'cancan', '= 1.6.9'
# Geocoding
gem 'geocoder', '~> 1.2'
gem 'geoip', '~> 1.4'
# JQuery
gem 'jquery-rails', '~> 2.2'
# Not sure why directly gem'd
gem 'tlsmail'
# DatePicker
gem 'jquery_datepicker'
# Export to iCal
gem 'icalendar', '~> 1.5'
# Not sure why directly gem'd
gem 'nokogiri', '= 1.5.9'
# Advanced querying for records
gem "squeel"
# Good admin interface to the backend
gem 'rails_admin', '= 0.4.9'
# API
gem 'grape'
# Delayed Jobs
gem 'delayed_job_active_record', '~> 0.4'
gem 'foreman'
gem 'hirefire-resource'
gem 'uglifier'
gem 'yui-compressor'
# gems required to be exact version for ruby <2.0
gem 'execjs', '<= 2.2'
gem 'coffee-script-source', '<= 1.8'
group :assets do
gem 'sass', '~> 3.2'
gem 'sass-rails', '~> 3.2'
gem 'compass', '~> 0.12'
end
gem 'aws-sdk', '< 2.0'
gem "paperclip", '~> 3.4'
gem "omniauth", '=1.1.3'
gem "omniauth-facebook"
gem "omniauth-google-oauth2"
gem "omniauth-twitter"
gem 'wicked'
gem 'classy_enum', '~> 2.0.3'
gem 'sinatra', '1.0'
gem 'date_validator', '0.7.1'
gem 'mysql2', '=0.3.11'
gem 'rgeo'
gem 'rgeo-geojson'
gem 'activerecord-mysql2spatial-adapter'
gem 'newrelic_rpm'
group :development do
gem 'factory_girl_rails'
gem 'rails-footnotes'
gem 'sqlite3'
gem 'bullet'
end
group :production do
# http://www.imagemagick.com/www/binary-releases.html#windows
# https://github.com/rmagick/rmagick/wiki/Installing-on-Windows
# LKG is 6.7.9.9 - http://ftp.sunet.se/pub/multimedia/graphics/ImageMagick/binaries/
# http://ftp.sunet.se/pub/multimedia/graphics/ImageMagick/binaries/ImageMagick-6.7.7-0-Q16-windows-dll.exe
# http://stackoverflow.com/questions/4451213/ruby-1-9-2-how-to-install-rmagick-on-windows
gem "rmagick"
gem "unicorn"
end