-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
48 lines (37 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
source 'http://rubygems.org'
gem 'rails', '~> 3.0.7'
gem 'mysql2', '~> 0.2.7'
gem "warden"
gem "devise"#, :git => "https://github.com/plataformatec/devise.git"
gem "bcrypt-ruby", :require => "bcrypt"
gem "oauth2"
gem "sass"
gem "haml"
gem "haml-rails"#, :git => "https://github.com/indirect/haml-rails.git"
gem "will_paginate", "~> 3.0.beta"
gem "jammit"
gem "simple_form"
gem "uuidtools"
gem 'crack', :git => '[email protected]:jgeiger/crack.git'
gem 'httparty'
gem 'acts-as-taggable-on', '2.0.3'
gem 'ghazel-daemons', :require => 'daemons'
gem 'delayed_job'
gem "hiredis", "~> 0.3.1"
gem "redis", "~> 2.2.0", :require => ["redis/connection/hiredis", "redis"]
gem 'mongoid'#, :git => 'https://github.com/mongoid/mongoid.git'
gem 'bson_ext'
gem 'rails-footnotes', '>= 3.7', :group => :development
gem "capybara", :group => [:test, :cucumber]#, :git => "https://github.com/jnicklas/capybara.git"
gem "database_cleaner", :group => [:test, :cucumber]
gem "cucumber-rails", :group => [:test, :cucumber]
gem "cucumber", :group => [:test, :cucumber]
gem "spork", :group => [:test, :cucumber]
gem "launchy", :group => [:test, :cucumber]
gem "webrat", :group => [:test, :cucumber]
gem "rspec", ">= 2.5.0", :group => [:test, :cucumber]
gem "rspec-rails", ">= 2.5.0", :group => [:development, :test, :cucumber]
gem "factory_girl_rails", :group => [:test, :cucumber]
gem "fakeweb", :group => [:test, :cucumber]
gem "rest-client", :group => [:test, :cucumber]
gem "simplecov", :group => [:test, :cucumber]