-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
45 lines (41 loc) · 1.31 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
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'dotenv-rails'
gem 'friendly_id'
gem 'jbuilder', '~> 2.5'
gem 'mysql2', '>= 0.3.18', '< 0.5'
gem 'puma', '~> 3.7'
gem 'rails', '~> 5.1.0.rc1'
gem 'sass-rails', github: 'rails/sass-rails'
gem 'serviceworker-rails'
gem 'slim-rails'
gem 'therubyracer', platforms: :ruby
gem 'turbolinks', '~> 5'
gem 'uglifier', '>= 1.3.0'
group :development, :test do
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'factory_girl_rails'
gem 'faker'
gem 'itamae'
gem 'itamae-plugin-recipe-rbenv'
gem 'listen'
gem 'pry-byebug'
gem 'pry-rails'
gem 'rspec-core', git: 'https://github.com/rspec/rspec-core.git', branch: 'master'
gem 'rspec-expectations', git: 'https://github.com/rspec/rspec-expectations.git', branch: 'master'
gem 'rspec-mocks', git: 'https://github.com/rspec/rspec-mocks.git', branch: 'master'
gem 'rspec-rails', git: 'https://github.com/rspec/rspec-rails.git', branch: 'master'
gem 'rspec-support', git: 'https://github.com/rspec/rspec-support.git', branch: 'master'
gem 'rubocop', '0.52.1', require: false
end
group :development do
gem 'bullet'
gem 'capistrano'
gem 'capistrano-bundler'
gem 'capistrano-npm'
gem 'capistrano-rails'
gem 'capistrano-rbenv'
gem 'capistrano3-puma'
gem 'spring'
gem 'web-console', '>= 3.3.0'
end