-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
51 lines (36 loc) · 950 Bytes
/
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
source 'http://rubygems.org'
gem 'rails'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'mysql2'
gem 'devise', :git => 'https://github.com/plataformatec/devise.git'
gem "haml", ">= 3.0.0"
gem "haml-rails"
# Deploy with Capistrano
gem 'capistrano'
#textilize
gem "RedCloth"
gem "prarupa"
gem "rdiscount"
#JQuery for rails
gem 'jquery-rails'
#lets paginate
gem "will_paginate", "~> 3.0.pre2"
gem 'hoptoad_notifier'
gem "mechanize"
#gem 'settingslogic'
#admin utility
#gem 'typus', :git => 'https://github.com/fesplugas/typus.git'
group :development, :test do
gem 'wirble'
gem 'simplecov', '>= 0.3.5', :require => false # Will install simplecov-html as a dependency
gem "rspec-rails", ">= 2.0.1"
gem 'fuubar' #color our rspecs
gem "steak", ">= 1.0.0.rc.1"
gem "faker"
gem "capybara"
gem 'machinist', '>= 2.0.0.beta1'
gem 'launchy'
gem 'database_cleaner'
gem 'fakeweb'
end