-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
44 lines (40 loc) · 945 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
source 'https://rubygems.org'
gem 'rails', '4.2.1'
gem 'mysql2'
gem 'bootstrap-sass', '~> 3.3.1'
gem 'sass-rails', github: 'rails/sass-rails'
gem 'bh', '1.3.3'
gem 'bh-flash', :gist => '54235580e1d53b1a9e36'
# FIXME: We need this
#gem 'auto_strip_attributes', '~> 2.0'
gem 'autoprefixer-rails'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'faker'
gem 'will_paginate'
gem 'will_paginate-bootstrap'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'iso'
gem 'tinymce-rails'
gem 'redis'
gem 'rails-observers'
group :development, :test do
gem 'byebug'
gem 'web-console', '~> 2.0'
gem 'fabrication'
gem 'rspec-rails'
gem 'capybara'
gem 'guard'
gem 'guard-rspec', require: false
end
group :development do
gem 'quiet_assets'
end
group :test do
gem 'fakeredis', '~> 0.5.0', require: 'fakeredis/rspec'
gem 'shoulda'
gem 'shoulda-matchers', require: false
end