-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
42 lines (35 loc) · 890 Bytes
/
Gemfile
File metadata and controls
42 lines (35 loc) · 890 Bytes
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
source 'https://rubygems.org'
gem 'rails', '3.2.11'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'thin'
group :development, :test do
gem 'sqlite3'
end
group :production do
gem 'mysql2'
gem 'newrelic_rpm'
end
# 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 'uglifier', '>= 1.0.3'
#gem 'compass'
#gem 'compass-rails'
#gem 'compass-susy-plugin'
#gem 'less-rails'
#gem 'twitter-bootstrap-rails'
#gem 'bootstrap-sass', '~> 2.0.3'
end
gem 'jquery-rails'
gem "rmagick"
gem "carrierwave"
gem "fog", "~> 1.3.1"
gem 'omniauth-twitter'
gem 'rails_admin'
gem 'acts-as-taggable-on', '~> 2.3.1'
gem 'acts_as_votable', '~> 0.3.1'
gem 'kaminari'
gem 'stripe', :git => 'https://github.com/stripe/stripe-ruby'