-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathGemfile
53 lines (46 loc) · 1.03 KB
/
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
46
47
48
49
50
51
52
53
source 'http://rubygems.org'
gem 'rails', '3.1.0'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'mysql2', '0.3.7'
gem 'inherited_resources', '1.2.2'
gem 'devise'
gem 'cancan', '1.6.5'
gem 'unicorn'
gem 'haml'
gem 'haml-rails'
gem 'dynamic_form'
gem 'formtastic'
gem 'carmen'
gem 'paperclip'
gem 'tinymce-rails'
gem 'thinking-sphinx'
gem 'will_paginate'
gem 'activeadmin'
gem 'sass-rails'
gem "meta_search", '>= 1.1.0.pre'
gem 'acts_as_commentable', '3.0.1'
gem 'simple_form'
gem 'airbrake'
group :assets do
gem 'coffee-rails', "~> 3.1.0"
gem 'uglifier'
gem 'therubyracer'
end
gem 'jquery-rails'
# Bundle gems for the local environment. Make sure to
# put test-only gems in this group so their generators
# and rake tasks are available in development mode:
# group :development, :test do
# gem 'webrat'
# end
group :development do
gem 'awesome_print'
end
group :test do
gem "cucumber-rails", "~> 1.1.1"
gem "database_cleaner"
gem "factory_girl"
gem "launchy"
gem 'email_spec'
end