-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
39 lines (35 loc) · 898 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
source 'https://rubygems.org'
ruby '>=2.4.1'
gem 'autoprefixer-rails'
gem 'bootstrap', '~> 4.1.3'
gem 'coffee-rails', '>= 4.0.0'
gem 'faker'
gem 'hamlit', '>= 2.7.0'
gem 'hamlit-rails'
gem 'jquery-rails'
gem 'kaminari'
gem 'mysql2', '~> 0.4.4'
gem 'rails', '~> 5.2.1'
gem 'rails-i18n'
gem 'redcarpet'
gem 'roo', '>= 2.5.1'
gem 'sass-rails', '~> 5.0.4'
gem 'shopr', git: 'https://github.com/tryshopr/shopr.git'
gem 'simple_form'
gem 'sprockets-rails', '~> 3.2.0', require: 'sprockets/railtie'
gem 'uglifier', '>= 1.3.0'
group :development do
gem 'capistrano', '~> 3.11.0'
gem 'capistrano-bundler', '~> 1.1.2'
gem 'capistrano-rails', '~> 1.1.1'
gem 'sqlite3'
# Add this if you're using rvm
gem 'better_errors'
gem 'binding_of_caller'
gem 'capistrano-rvm', github: 'capistrano/rvm'
gem 'pry-byebug'
end
group :production do
gem 'rails_12factor'
gem 'unicorn', '~> 5.4.1'
end