This repository was archived by the owner on Jul 22, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
74 lines (50 loc) · 1.35 KB
/
Gemfile
File metadata and controls
74 lines (50 loc) · 1.35 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
63
64
65
66
67
68
69
70
71
72
73
74
source 'https://rubygems.org'
ruby '2.0.0'
gem 'rails', '~> 4.0.3'
group :development, :test do
gem 'foreman'
gem 'pry'
gem 'rb-fsevent'
gem 'rspec-rails', '~> 2.0'
gem 'guard-livereload'
gem 'rack-livereload'
gem 'timecop'
gem 'factory_girl'
end
group :production do
#Used by heroku to enable logging and other magic
gem 'rails_12factor'
#Assets are served in production mode, and cached
#gem 'heroku_rails_deflate'
end
gem 'sass-rails', '~> 4.0.0'
gem 'uglifier', '~> 2.3.2'
gem 'newrelic_rpm'
gem 'jquery-rails'
gem 'thin'
gem 'simple_status'
gem 'sucker_punch', '~> 1.0.1'
gem 'mongoid', github: 'mongoid/mongoid'
gem 'grape'
gem 'grape-swagger', '~>0.6.0'
gem 'grape-rabl'
gem 'pubnub'
gem 'fog'
gem 'dragonfly', '~> 0.9'
gem 'bugsnag'
gem 'hipchat', '~> 0.14.0'
gem 'rails_admin', '~> 0.6.0'
gem 'mongoid_slug'
gem "mongoid-indifferent-access", require: "mongoid_indifferent_access"
#Had to run my own fork because the jquery load function wasn't happening
#Also wanted the maxwidth/maxheight feature
gem 'rails_admin_map_field', github: 'drubin/rails_admin_map_field'
gem 'mixpanel_client', '~> 3.1.2'
gem 'devise'
gem 'dropbox-sdk', '~> 1.6.1', require: 'dropbox_sdk'
gem "rails_config", "~> 0.3.3"
#Used for authentiation to dropbox
gem 'omniauth'
gem 'omniauth-dropbox'
#Used for FB posting
gem "koala", "~> 1.8.0rc1"