Sha256: 2a20c1a08c0a3ec6b58e2934641b564826b505d9da9e2855db4883e9578eba73

Contents?: true

Size: 891 Bytes

Versions: 5

Compression:

Stored size: 891 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 %>
gem "dynomite"

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

5 entries across 5 versions & 1 rubygems

Version Path
jets-1.5.3 lib/jets/commands/templates/skeleton/Gemfile.tt
jets-1.5.2 lib/jets/commands/templates/skeleton/Gemfile.tt
jets-1.5.1 lib/jets/commands/templates/skeleton/Gemfile.tt
jets-1.5.0 lib/jets/commands/templates/skeleton/Gemfile.tt
jets-1.4.11 lib/jets/commands/templates/skeleton/Gemfile.tt