-
Notifications
You must be signed in to change notification settings - Fork 6
/
Gemfile
64 lines (62 loc) · 1.29 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
source 'http://rubygems.org'
gem 'rails', '3.1.1'
gem 'haml'
gem 'devise'
gem 'pry'
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
end
gem 'simplehttp'
gem 'resque_mailer'
gem 'jquery-rails'
gem 'rails_admin', :git => 'git://github.com/sferik/rails_admin.git'
gem 'haml'
gem 'coffee-filter'
gem 'high_voltage'
gem 'resque', :require => "resque/server"
gem 'dropbox-sdk'
gem 'bourbon'
gem 'bootstrap-sass'
gem 'formtastic'
gem 'heroku'
gem 'redcarpet'
gem 'RedCloth', ">= 4.2.7"
gem 'rdiscount'
gem 'liquid'
gem 'liquid-inheritance'
gem 'dalli'
gem "aws-s3"
gem 'fakeweb'
gem 'omniauth', :git => "git://github.com/intridea/omniauth"
gem 'omniauth-oauth', :git => "git://github.com/intridea/omniauth-oauth"
gem 'omniauth-contrib', :git => 'git://github.com/intridea/omniauth-contrib'
gem "tweet-button"
gem 'nokogiri'
gem 'pg'
gem 'name-dot-com'
gem 'thin'
gem 'twitter_bootstrap_form_for'
gem 'stripe'
group :test, :development do
gem 'sqlite3'
gem 'rspec'
gem 'rspec-rails'
gem 'cucumber-rails'
gem 'factory_girl_rails'
gem 'autotest'
gem 'capybara'
gem 'launchy'
gem 'spork','0.9.0.rc9'
gem 'rb-fsevent'
gem 'guard-spork'
gem 'guard-cucumber'
gem 'shoulda-matchers'
gem 'database_cleaner'
gem 'vcr'
gem 'capybara-webkit'
end
group :test do
gem 'webmock'
end