-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
47 lines (37 loc) · 830 Bytes
/
Gemfile
File metadata and controls
47 lines (37 loc) · 830 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
36
37
38
39
40
41
42
43
44
45
46
source 'http://rubygems.org'
gem 'rails', '~> 3.0.3'
gem 'omniauth', :git => 'git://github.com/intridea/omniauth.git'
gem 'sweetsuite', :path => './../sweetsuite-gem'
gem 'jellybean', :path => './../jellybean'
gem 'compass', '~> 0.11.1'
gem 'devise'
gem 'formtastic'
gem 'haml', '~> 3.1'
gem 'sass', '~> 3.1'
gem 'haml-rails'
gem 'jquery-rails'
# gems only required for development and not app functionality
group :development do
gem 'heroku'
end
group :development, :test do
gem 'rspec-rails'
gem 'ruby-debug19'
end
group :test do
if RUBY_PLATFORM =~ /darwin/
gem 'autotest-fsevent'
gem 'autotest-growl'
gem 'autotest-rails'
gem 'ZenTest'
end
gem 'capybara'
gem 'cucumber'
gem 'factory_girl_rails'
gem 'fuubar'
gem 'launchy'
gem 'shoulda'
end
gem 'mysql2'
# Rack server
gem 'thin'