You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
816 B
38 lines
816 B
source 'https://rubygems.org'
|
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
|
ruby '2.6.6'
|
|
|
|
gem 'rails', '~> 5.2.3'
|
|
gem 'sqlite3'
|
|
gem 'puma', '~> 3.11'
|
|
gem 'uglifier', '>= 1.3.0'
|
|
|
|
gem 'haml-rails'
|
|
gem 'comfortable_mexican_sofa', '~> 2.0.0'
|
|
gem 'comfy_blog', '~> 2.0.0'
|
|
gem 'kaminari'
|
|
|
|
group :development do
|
|
gem 'web-console', '>= 3.3.0'
|
|
# Reduces boot times through caching; required in config/boot.rb
|
|
gem 'bootsnap', '>= 1.1.0', require: false
|
|
gem 'listen', '>= 3.0.5', '< 3.2'
|
|
|
|
gem 'spring'
|
|
gem 'spring-watcher-listen', '~> 2.0.0'
|
|
gem 'better_errors'
|
|
gem 'binding_of_caller'
|
|
gem 'html2haml'
|
|
gem 'spring-commands-rspec'
|
|
end
|
|
|
|
group :development, :test do
|
|
gem 'factory_bot_rails'
|
|
gem 'faker'
|
|
gem 'rspec-rails'
|
|
end
|
|
|
|
group :test do
|
|
gem 'database_cleaner'
|
|
gem 'launchy'
|
|
end
|