-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
67 lines (57 loc) · 1.58 KB
/
Gemfile
File metadata and controls
67 lines (57 loc) · 1.58 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
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.0.3'
gem 'bootstrap-sass', '~> 3.2.0'
gem 'sass-rails', '~> 4.0.2'
gem 'haml-rails'
gem 'autoprefixer-rails'
gem 'uglifier', '>= 1.3.0'
gem "font-awesome-rails"
gem 'rmagick'
gem 'devise'
gem 'underscore-rails'
gem 'protected_attributes'
gem 'tumblr_client', '~> 0.8.5'
gem 'twitter', '~> 5.11.0'
gem 'soundmanager-rails'
gem 'simple_form'
gem 'momentjs-rails', '>= 2.8.1', :github => 'derekprior/momentjs-rails'
gem 'bootstrap3-datetimepicker-rails', '~> 4.7.14'
gem 'chronic'
gem 'picasa'
gem 'paypal-express'
gem 'rubyzip'
gem 'curb'
gem 'rack-cache'
gem 'dalli'
gem 'kgio'
gem "memcachier"
gem 'activerecord-session_store', github: 'rails/activerecord-session_store'
gem 'simple_oauth', '~> 0.2.0'
# Makes running your Rails app easier. Based on the ideas behind 12factor.net
gem 'rails_12factor'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.0.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.2'
gem 'braintree-rails', '~> 1.4.0'
ruby '2.0.0'
group :production do
gem 'heroku-deflater'
gem 'pg'
gem 'unicorn'
end
group :development, :test do
gem 'rspec-rails', '~> 3.0.0'
gem 'byebug'
gem 'pry'
gem 'sqlite3'
end
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end