This repository has been archived by the owner on Aug 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
71 lines (61 loc) · 1.47 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
source :rubygems
gem 'rails', '~> 3.2'
gem 'mysql2'
gem 'devise'
gem "friendly_id", "~> 4.0.1"
gem 'paperclip'
gem 'kaminari'
gem 'gvis'
gem 'httparty'
gem 'dynamic_form'
gem 'settingslogic'
gem 'activeadmin'
gem 'aasm'
gem 'geocoder'
#Social Networks
gem 'bitly' #https://github.com/philnash/bitly
gem 'mini_fb'
gem 'twitter'
gem 'linkedin' , :git => 'git://github.com/pengwynn/linkedin.git'
gem 'omniauth-twitter'
gem 'omniauth-facebook'
gem 'omniauth-linkedin'
#Infra, monitoring
gem 'whenever', :git => 'git://github.com/kotfu/whenever.git', :require => false #https://github.com/javan/whenever
gem 'resque', '> 1.19'
gem 'resque_mailer'
gem 'resque-scheduler', :require => 'resque_scheduler'
gem 'foreman'
gem 'newrelic_rpm'
gem 'airbrake'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', ' ~> 3.2'
gem 'jquery-rails'
gem 'coffee-rails', '~> 3.2'
gem 'uglifier'
gem 'twitter-bootstrap-rails', :git => 'git://github.com/seyhunak/twitter-bootstrap-rails.git'
gem 'bourbon'
end
group :test do
gem 'minitest-rails'
gem 'minitest-rails-capybara'
gem 'database_cleaner'
end
group :development do
gem 'debugger'
gem 'capistrano'
gem 'magic_encoding', :require => false
gem 'rails-dev-tweaks', '~> 0.6.1'
gem 'brakeman'
gem 'annotate'
gem 'pry'
gem 'pry-nav'
gem 'mail_view'
gem 'mailcatcher'
end
group :development, :test do
gem 'factory_girl_rails', '~> 3.0'
gem 'random_data'
end