-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
40 lines (34 loc) · 815 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
source 'http://rubygems.org'
gem 'rails', '3.2.11'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
# Asset template engines
gem 'json'
gem 'sass-rails'
gem 'coffee-script'
gem 'uglifier'
gem 'haml'
gem 'jquery-rails'
gem 'warden'
gem 'rails_warden', :git => 'git://github.com/hassox/rails_warden.git'
gem 'ejs'
gem "rails-backbone"
group :development, :test do
gem 'awesome_print', :require => 'ap'
gem 'syntax'
gem "rspec-rails", ">= 2.0.0"
gem "cucumber-rails"
gem "capybara"
gem "database_cleaner", :git => 'git://github.com/earnold/database_cleaner.git'
gem 'machinist', '>= 2.0.0.beta2'
gem 'pickle'
gem 'jasmine'
gem 'jasminerice'
gem 'sqlite3'
gem 'rb-fsevent'
gem 'guard-livereload'
gem 'growl'
end
group :production do
gem 'pg'
end