magrathealabs/mecha

View on GitHub
lib/mecha/generators/app/templates/Gemfile.erb

Summary

Maintainability
Test Coverage
source 'https://rubygems.org'

git_source(:github) do |repo_name|
  repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
  "https://github.com/#{repo_name}.git"
end

ruby '<%= RUBY_VERSION %>'

gem 'rails', '~> <%= Mecha::RAILS_VERSION %>'

gem 'pg', '~> 0.18.4'
gem 'puma', '~> 3.11'

gem 'bootsnap', '>= 1.1.0', require: false
gem 'jquery-rails', '~> 4.3.1'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'webpacker'

group :development, :test do
  gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
  gem 'capybara', '>= 2.15', '< 4.0'
  gem 'dotenv-rails'
  gem 'factory_bot'
  gem 'faker'
  gem 'pry'
  gem 'pry-byebug'
  gem 'selenium-webdriver'
  gem 'chromedriver-helper'
end

group :development do
  gem 'listen', '>= 3.0.5', '< 3.2'
  gem 'spring'
  gem 'spring-watcher-listen', '~> 2.0.0'
  gem 'web-console', '>= 3.3.0'
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]