-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
62 lines (54 loc) · 1.42 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
58
59
60
61
62
source 'https://rubygems.org'
gem 'rails', '4.2.1'
gem 'pg'
gem 'sass-rails'
gem 'uglifier'
gem 'coffee-rails'
gem 'therubyracer', platforms: :ruby
gem 'kaminari'
gem 'less-rails-bootstrap'
gem 'haml-rails'
gem 'carrierwave'
gem 'rmagick'
gem 'jquery-rails'
gem 'rspec-rails'
gem 'capybara'
gem 'faker', github: 'Makapoxa/faker', ref: '2c52d5'
gem 'factory_girl_rails'
gem 'russian'
gem 'bootstrap-kaminari-views'
gem 'jquery-fileupload-rails'
gem 'responders'
# gem 'aws-sdk' #
gem 'fog' # cloud upload
gem 'devise' # auth
gem 'cancancan'
gem 'plupload-rails'
gem 'font-awesome-rails' # font-awesome
# gem 'redactor-rails' #wysiwyg editor for posts
gem 'mini_magick' # for resize images
gem 'sidekiq'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc
group :production do
gem 'rails_12factor'
end
group :test do
gem 'codeclimate-test-reporter'
gem 'pry'
gem 'pry-remote'
gem 'pry-rails'
gem 'pry-stack_explorer'
gem 'pry-byebug'
end
# Spring speeds up development by keeping your application running
# in the background. Read more: https://github.com/rails/spring
group :development do
gem 'spring'
gem 'guard-rspec'
gem 'spring-commands-rspec'
end