-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
51 lines (41 loc) · 1018 Bytes
/
Gemfile
File metadata and controls
51 lines (41 loc) · 1018 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
47
48
49
50
51
source 'https://rubygems.org'
gem 'rails', '3.2.13'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
group :production do
gem 'pg'
end
group :development, :test do
gem 'sqlite3'
gem 'rspec-rails'
gem "factory_girl_rails"
gem "guard"
gem "guard-rspec"
gem "guard-rails"
gem "guard-spork"
gem "rb-inotify"
gem "capybara"
gem "webrat"
gem "cucumber-rails", :require => false
gem "database_cleaner"
gem "better_errors"
gem "binding_of_caller"
gem "meta_request"
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
gem 'compass-rails'
end
gem 'redactor-rails'
gem 'carrierwave'
gem 'mini_magick'
gem 'jquery-rails'
gem 'devise'
gem 'cancan'
gem 'gravatar_image_tag'