-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGemfile
89 lines (82 loc) · 1.73 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
source 'https://rubygems.org'
gem 'rails', '3.2.19'
gem "unicorn"
gem "unicorn-rails"
gem 'formtastic' #, '~> 1.1.0'
gem 'will_paginate', '~> 3.0'
gem 'nokogiri'
gem 'json'
gem 'rdoc'
gem 'RedCloth'
gem 'country_select', '~> 1.3.1'
gem 'bcrypt-ruby', '~> 3.0.0'
gem 'omniauth-facebook' #, '1.4.0'
gem 'omniauth-twitter'
gem 'omniauth-google-oauth2'
gem 'omniauth-shibboleth'
gem 'omniauth-identity'
gem 'omniauth-windowslive'
gem 'omniauth-linkedin'
# gem 'mail_style'
gem 'geocoder'
gem 'aes'
gem 'fastercsv'
gem 'mandrill-api'
# gem 'newrelic_rpm'
gem 'ey_config'
gem "mime-types" #, "1.25"
gem "carrierwave" #, "~> 0.4"
gem "fog"
gem "aws"
gem "mini_magick"
gem "rubyzip" #, '~> 0.9.9'
gem 'axlsx' #, '~> 1.3.6'
gem "acts_as_xlsx" #, '~> 1.0.6'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'apartment' #, '~> 0.25.2'
gem 'zip'
gem 'net-sftp'
gem 'rails_autolink', '~> 1.0.0'
gem 'rails3-jquery-autocomplete'
gem "sqlite3"
gem 'rollbar'
gem 'addressable'
gem 'sucker_punch', '~> 1.0'
gem 'sidekiq'
gem 'apartment-sidekiq'
gem 'friendly_id'
# gem 'sinatra', require: false # for sidekiq monitor
# gem 'slim' # for sidekiq monitor
gem "simple_calendar", "~> 1.1.0"
gem 'jquery-tablesorter'
gem 'le'
gem 'coderay', :require => 'coderay'
gem 'acts_as_list'
gem 'fabrication'
gem 'faker'
gem 'acts-as-taggable-on', '~> 3.4'
gem 'select2-rails'
gem 'autonumeric-rails'
gem 'money-rails'
group :production do
gem 'mysql2', '~> 0.3.7'
end
group :staging do
end
group :development do
gem 'byebug'
gem 'awesome_print'
end
group :assets do
gem 'sass-rails' #, "~> 3.1.0"
gem 'coffee-rails' #, "~> 3.1.0"
gem 'uglifier'
end
group :test do
gem 'turn', :require => false
end
gem 'rack-mini-profiler'
gem 'flamegraph'
gem 'stackprof'
gem 'memory_profiler'