-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGemfile.erb
71 lines (63 loc) · 1.74 KB
/
Gemfile.erb
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
63
64
65
66
67
68
69
70
71
source 'https://rubygems.org'
ruby '<%= Barebones::RUBY_VERSION %>'
# Defaults
gem 'rails', '<%= Barebones::RAILS_VERSION %>'
gem 'puma'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'jquery-rails'
gem 'turbolinks', '~> 5'
gem 'jbuilder', '~> 2.5'
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
<% if options[:webpack] %>
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
gem 'webpacker'
<% end %>
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'pry-byebug'
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '~> 2.13'
gem 'selenium-webdriver'
gem 'awesome_print'
<% unless options[:skip_minitest] %>
gem 'minitest-rails'
gem 'minitest-reporters'
gem 'minitest-around'
gem 'mocha'
gem 'database_cleaner'
<% end %>
<% unless options[:skip_factory_girl] %>
gem 'factory_girl_rails', '~> 4.0'
<% end %>
end
group :development do
gem 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.2'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
<% unless options[:skip_carrierwave] %>
# File Uploads
gem 'fog-aws'
gem 'mini_magick'
gem 'carrierwave'
<% end %>
<% unless options[:skip_resque] %>
# Background Processing
gem 'resque'
gem 'resque-scheduler'
gem 'sinatra', github: 'sinatra/sinatra', branch: 'master'
<% end %>
<% unless options[:skip_sidekiq] %>
# Background Processing
gem 'sidekiq'
<% end %>
# Database
gem 'pg', '~> 0.18.4'
# Faster JSON Parsing
gem 'oj'
gem 'oj_mimic_json'
gem 'multi_json'