Sha256: a205c0d9eba876396f593b00125c7daf7527e176150475f572b2128ed8632a95

Contents?: true

Size: 1.16 KB

Versions: 5

Compression:

Stored size: 1.16 KB

Contents

source "https://rubygems.org"

gem "jets", "~> <%= jets_minor_version %>"

<% if @webpacker -%>
# Include jetpacker if you are building html pages
gem "jetpacker"
<% end -%>
<% if @database == 'postgresql' %>
# Include pg gem if you are using ActiveRecord, remove next line
# and config/database.yml file if you are not
gem "pg", "~> 1.2.3"
<% elsif @database == 'mysql' %>
# Include mysql2 gem if you are using ActiveRecord, remove next line
# and config/database.yml file if you are not
gem "mysql2", "~> 0.5.3"
<% end %>
<% unless options[:mode] == 'job' -%>
gem "dynomite"
<% end -%>
gem "zeitwerk", "~> 2.4.0"

# development and test groups are not bundled as part of the deployment
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]
<% unless options[:mode] == 'job' -%>
  gem 'shotgun'
  gem 'rack'
  gem 'puma'
<% end -%>
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
<% unless options[:mode] == 'job' -%>
  gem 'launchy'
  gem 'capybara'
<% end -%>
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
jets-3.0.23 lib/jets/commands/templates/skeleton/Gemfile.tt
jets-3.0.22 lib/jets/commands/templates/skeleton/Gemfile.tt
jets-3.0.21 lib/jets/commands/templates/skeleton/Gemfile.tt
jets-3.0.20 lib/jets/commands/templates/skeleton/Gemfile.tt
jets-3.0.19 lib/jets/commands/templates/skeleton/Gemfile.tt