-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
137 lines (103 loc) · 2.76 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
source 'https://rubygems.org'
gem 'rails', '3.2.13'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
group :production do
gem 'mysql2'
gem 'passenger'
# gem 'activerecord-mysql2-adapter'
end
# User authentication
gem 'devise'
gem 'omniauth', git: 'git://github.com/intridea/omniauth.git'
gem 'omniauth-twitter'
gem 'omniauth-facebook'
gem 'omniauth-paypal', git: 'git://github.com/datariot/omniauth-paypal.git'
gem 'omniauth-wepay', git: 'git://github.com/tenaciousflea/omniauth-wepay.git'
# User profiles
gem 'gravatar_image_tag', git: 'git://github.com/mdeering/gravatar_image_tag.git'
gem 'paperclip'
# Configuration
gem 'figaro'
# Transactions
gem 'money-rails'
# Validations
gem 'date_validator', git: 'git://github.com/codegram/date_validator.git'
# Dates
gem 'american_date'
# Searching
gem 'ransack'
gem 'will_paginate'
gem 'bootstrap-will_paginate'
# Web server
gem 'thin'
# Emails
gem 'roadie'
gem 'delayed_job_active_record'
gem 'daemons'
gem 'actionmailer-callbacks'
gem 'mail_form'
# Linking chat urls
gem 'rinku'
# Javascript
gem 'js-routes'
# Payments
gem 'active_paypal_adaptive_payment', git: 'git://github.com/austingulati/active_paypal_adaptive_payment.git'
gem 'wepay', git: 'git://github.com/wepay/Ruby-SDK.git'
# Monitoring
gem 'newrelic_rpm'
# Pretty URLs
gem 'friendly_id'
# PDF Generation
gem 'prawn', git: 'git://github.com/celic/prawn.git', submodules: true
# ActiveRecord extensions
gem "activerecord-import"
# AB testing
gem 'vanity', git: 'git://github.com/austingulati/vanity.git'
# Nested forms
gem 'nested_form'
# Cron jobs
gem 'whenever', :require => false
group :development, :test do
gem 'sqlite3'
end
group :development do
gem 'annotate'
gem 'quiet_assets'
end
group :test do
gem 'factory_girl_rails'
gem 'rspec-rails'
gem 'capybara', '1.1.2'
gem 'spork'
gem 'guard-spork'
gem 'guard-rspec'
gem 'rb-inotify', '~> 0.8.8'
gem 'delorean'
gem 'shoulda-matchers', '1.5.2'
end
# Gems used only for assets and not required
# in production environments by default.
# group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'bourbon'
gem 'bootstrap-sass', git: 'git://github.com/austingulati/bootstrap-sass.git' # path: '/var/www/bootstrap-sass'
gem 'mustache'
gem 'coffee-rails', '~> 3.2.1'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
# end
gem 'jquery-rails'
# 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'
gem 'rvm-capistrano'
gem 'fog', git: 'git://github.com/fog/fog.git'
# To use debugger
# gem 'debugger'