-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
43 lines (38 loc) · 865 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
source :rubygems
gem "rails", "~> 3.0.3"
gem "pg"
gem "haml", "~> 3.0.25"
gem "haml-rails", ">= 0.3.4"
gem "jquery-rails", ">= 0.2.6"
gem "friendly_id", ">= 3.2.0"
gem "compass", ">= 0.10.6"
gem "html5-boilerplate", "0.3.0"
gem "will_paginate", ">= 3.0.pre2"
gem "devise", "~> 1.1"
gem "automatic_foreign_key"
group :development, :test do
gem "rspec-rails", ">= 2.4.1"
gem "factory_girl_generator", ">= 0.0.1"
gem "capybara", :git => 'git://github.com/jnicklas/capybara.git'
gem "launchy"
if RUBY_VERSION < "1.9"
gem "ruby-debug"
else
gem "ruby-debug19"
end
end
group :development do
gem "autotest-rails"
gem "test_notifier"
gem "hirb"
gem "wirble"
gem "capistrano"
gem "rvm"
gem "hpricot"
gem "ruby_parser"
end
group :test do
gem "rspec", ">= 2.4.0"
gem "factory_girl_rails", ">= 1.0.1"
end
# vim: set filetype=ruby: