-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
104 lines (91 loc) · 2.23 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
source 'https://rubygems.org'
gem 'rails', '3.2.13'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
#gem 'sqlite3'
gem 'activerecord-import'
gem 'acts_as_commentable_with_threading', git: 'git://github.com/eric-roland/acts_as_commentable_with_threading.git'
gem 'acts-as-taggable-on', '~> 2.3.1'
gem 'acts_as_votable', '~> 0.5.0'
gem 'annotate'
gem 'attempt'
gem 'awesome_print'
gem 'aws-s3'
gem 'aws-sdk'
gem 'cancan'
gem 'carmen'
gem 'carmen-rails', '~> 1.0.0.beta3'
gem 'chronic'
gem 'daemons'
gem 'delayed_job_active_record'
#gem 'delayed_paperclip'
gem 'devise'
gem 'devise-encryptable'
gem 'dynamic_form'
gem 'exception_notification'
gem 'fb_graph'
gem 'friendly_id'
gem 'geocoder', git: 'https://github.com/alexreisner/geocoder.git'
gem 'geokit-rails3'
gem 'inherited_resources'
gem 'json', '~>1.7.7'
gem 'jquery-rails', "2.3.0"
gem 'koala'
gem 'mail'
gem 'multi_xml', '= 0.5.2'
gem 'omniauth'
gem 'omniauth-facebook'
gem 'omniauth-twitter'
gem 'oauth2'
gem 'paperclip'
gem 'pg'
gem 'rabl'
gem 'rack', '= 1.4.5'
gem 'rufus-scheduler'
gem 'slim'
gem 'slim-rails'
gem 'twilio-ruby'
gem 'twitter'
gem 'twitter-bootstrap-rails'
gem 'uuidtools'
gem 'will_paginate', '~> 3.0.beta'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'purecss-rails'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer'
gem 'uglifier', '>= 1.0.3'
end
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the app server
gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
group :development, :test do
gem 'debugger'
gem "rspec-rails"
gem "factory_girl_rails"
gem 'shoulda-matchers'
gem 'autotest-rails'
gem "spork-rails"
gem 'simplecov', :require => false
gem "ffaker", "~> 1.16.1"
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem "bullet"
gem 'foreman'
gem "nifty-generators"
gem 'pry-rails'
gem "thin"
gem 'ruby-growl'
gem "ruby_parser" # soft dependency of declarative_authorization browser
gem "wirble"
end