forked from rweald/snack-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
35 lines (30 loc) · 715 Bytes
/
Copy pathGemfile
File metadata and controls
35 lines (30 loc) · 715 Bytes
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
source 'http://rubygems.org'
# core gems
gem 'rails', '3.0.3'
gem 'rack'
# gems to help us with the UI
gem "will_paginate"
gem "simple_form"
group :test, :development do
# Basic Testing Gems
gem "rspec-rails", "~> 2.4.0"
gem 'mocha'
gem "bourne"
gem "factory_girl_rails"
gem "cucumber-rails"
# advanced testing gems
gem "capybara"
gem "database_cleaner"
gem "fakeweb"
gem "rack-test"
gem "timecop"
gem "shoulda"
gem "launchy"
gem 'fakefs', :require => 'fakefs/safe'
gem "thin"
# Other gems we will need in development
gem "ruby-debug", :platforms => :mri_18
gem "ruby-debug19", :platforms => :mri_19
gem "jquery-rails"
gem 'sqlite3-ruby', :require => 'sqlite3'
end