-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
57 lines (51 loc) · 1.01 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
54
55
56
57
source 'http://rubygems.org'
gem 'rails', '~> 3.2.18'
gem "acts-as-taggable-on"
gem 'carmen-rails'
gem 'devise'
gem 'exception_notification'
gem 'friendly_id'
gem 'jquery-ui-rails'
gem 'jquery-rails'
gem 'mysql2'
gem 'nifty-generators'
gem 'numbers_and_words'
gem 'paperclip', '~> 3.5'
gem 'will_paginate'
gem 'settingslogic'
gem 'thin'
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>=1.0.3'
gem 'therubyracer'
end
group :development do
gem "better_errors"
gem 'binding_of_caller'
gem 'bond'
gem 'capistrano', '~> 2.15.4'
gem 'map_by_method'
gem 'meta_request'
gem 'pry'
gem 'pry-nav'
gem 'rvm-capistrano'
gem 'what_methods'
gem 'wirble'
end
group :development, :test do
gem 'factory_girl_rails'
gem 'faker'
gem 'quiet_assets'
gem 'rspec-rails'
end
group :test do
gem 'capybara'
gem 'capybara-webkit'
gem 'database_cleaner'
gem 'guard-rspec'
gem 'launchy'
gem 'mocha'
gem 'simplecov', '~> 0.7.1', require: false
gem 'webmock'
end