Sha256: ea80d3c7671d13d3e39deb656a3707f35f11cab47a2ff9a35ff5bcb9a90f97bd
Contents?: true
Size: 876 Bytes
Versions: 21
Compression:
Stored size: 876 Bytes
Contents
source "https://rubygems.org" gem "jets" <% if @webpacker -%> # Include webpacker if you are you are building html pages gem "webpacker", git: "https://github.com/tongueroo/webpacker.git", branch: "jets" <% end -%> <% if @database == 'postgresql' %> # Include pg gem if you are using ActiveRecord, remove if you are not gem "pg", "~> 1.1.3" <% elsif @database == 'mysql' %> # Include mysql2 gem if you are using ActiveRecord, remove if you are not gem "mysql2", "~> 0.5.2" <% end %> group :development, :test do # Call 'byebug' anywhere in the code to stop execution and get a debugger console gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] gem 'shotgun' gem 'rack' end group :test do gem 'rspec' # rspec test group only or we get the "irb: warn: can't alias context from irb_context warning" when starting jets console gem 'launchy' gem 'capybara' end
Version data entries
21 entries across 21 versions & 1 rubygems