Sha256: e4b9f0af8f1c80ce0b251dc4b77572cbc03ebfdff81b8ce63d7221b9ac34ce81

Contents?: true

Size: 1.13 KB

Versions: 13

Compression:

Stored size: 1.13 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 -%>

# 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

13 entries across 13 versions & 2 rubygems

Version Path
jets.benforeva-3.0.17.pre.mount.pre.fix lib/jets/commands/templates/skeleton/Gemfile.tt
jets-3.0.18 lib/jets/commands/templates/skeleton/Gemfile.tt
jets-3.0.17 lib/jets/commands/templates/skeleton/Gemfile.tt
jets-3.0.16 lib/jets/commands/templates/skeleton/Gemfile.tt
jets-3.0.15 lib/jets/commands/templates/skeleton/Gemfile.tt
jets-3.0.14 lib/jets/commands/templates/skeleton/Gemfile.tt
jets-3.0.13 lib/jets/commands/templates/skeleton/Gemfile.tt
jets-3.0.12 lib/jets/commands/templates/skeleton/Gemfile.tt
jets-3.0.11 lib/jets/commands/templates/skeleton/Gemfile.tt
jets-3.0.10 lib/jets/commands/templates/skeleton/Gemfile.tt
jets-3.0.9 lib/jets/commands/templates/skeleton/Gemfile.tt
jets-3.0.8 lib/jets/commands/templates/skeleton/Gemfile.tt
jets-3.0.7 lib/jets/commands/templates/skeleton/Gemfile.tt