micro-blogger/Gemfile

51 lines
1.2 KiB
Ruby
Raw Normal View History

2018-11-10 10:40:22 -06:00
# frozen_string_literal: true
2018-11-09 20:51:38 -06:00
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.5.3'
2018-11-10 10:40:22 -06:00
gem 'figaro', '~> 1.1'
2018-11-09 20:51:38 -06:00
gem 'rails', '~> 5.2.1'
gem 'bcrypt', '~> 3.1.7'
gem 'bootsnap', '>= 1.1.0', require: false
gem 'jbuilder', '~> 2.5'
2018-11-10 10:40:22 -06:00
gem 'json', '~> 2.1'
gem 'jwt', '2.1.0'
2018-11-09 20:51:38 -06:00
gem 'puma', '~> 3.11'
2018-11-10 10:40:22 -06:00
gem 'pundit', '~> 2.0'
2018-11-09 20:51:38 -06:00
gem 'rack-cors'
gem 'sqlite3'
2018-11-10 10:40:22 -06:00
gem 'validates_email_format_of'
2018-11-09 20:51:38 -06:00
group :development, :test do
2018-11-10 10:40:22 -06:00
gem 'awesome_print'
gem 'binding_of_caller'
gem 'brakeman'
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'guard', github: 'guard/guard'
gem 'guard-brakeman'
gem 'guard-minitest'
gem 'guard-rubocop'
gem 'guard-shell'
gem 'guard-spring'
2018-11-09 20:51:38 -06:00
gem 'listen', '>= 3.0.5', '< 3.2'
2018-11-10 10:40:22 -06:00
gem 'minitest-reporters', github: 'kern/minitest-reporters'
gem 'policy-assertions'
gem 'pry-byebug'
gem 'pry-rails'
gem 'rails-erd'
gem 'rubocop', '~> 0.59'
gem 'simplecov', github: 'colszowka/simplecov', require: false
2018-11-09 20:51:38 -06:00
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
2018-11-10 10:40:22 -06:00
group :development do
gem 'annotate', require: false
end
2018-11-09 20:51:38 -06:00
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
2018-11-10 10:40:22 -06:00
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]