-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
45 lines (40 loc) · 864 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
source 'http://rubygems.org'
gem 'rails', '~> 3.2'
gem 'jquery-rails'
gem 'formtastic'
gem 'haml'
gem 'haml-rails'
gem 'kaminari'
gem 'simple-navigation'
gem 'paperclip', '~> 2.6'
gem 'pg'
gem 'devise', '~> 1.5'
gem 'ruby-picasa', :require => 'ruby_picasa', :git => 'git://github.com/fjg/ruby_picasa.git'
gem 'acts_as_list'
gem 'rails_autolink'
gem 'friendly_id', '~> 4.0.0'
group :assets do
gem 'coffee-rails', '~> 3.2'
gem 'sass-rails', '~> 3.2'
gem 'uglifier'
gem 'yui-compressor'
end
group :production do
gem 'execjs'
gem 'therubyracer'
gem 'newrelic_rpm'
end
group "development" do
gem 'guard-spork'
gem 'guard-rspec'
# OS X file change notifier
gem 'rb-fsevent', '~> 0.9.1'
end
group :development, :test do
gem 'factory_girl_rails'
gem 'faker'
gem 'rspec-rails', '~> 2.7'
gem 'shoulda'
gem 'capybara'
gem 'jasmine'
end