Sha256: 8ae21e0afdf3eae0efd06c651a58587f22897a33ef2189d717a28c5bbc6dcbf1
Contents?: true
Size: 1.93 KB
Versions: 6
Compression:
Stored size: 1.93 KB
Contents
source 'https://rubygems.org' gem 'rake' <%- if hanami_head -%> gem 'hanami-utils', require: false, git: 'https://github.com/hanami/utils.git', branch: 'develop' gem 'hanami-validations', require: false, git: 'https://github.com/hanami/validations.git', branch: 'develop' gem 'hanami-router', require: false, git: 'https://github.com/hanami/router.git', branch: 'develop' gem 'hanami-controller', require: false, git: 'https://github.com/hanami/controller.git', branch: 'develop' gem 'hanami-view', require: false, git: 'https://github.com/hanami/view.git', branch: 'develop' gem 'hanami-helpers', require: false, git: 'https://github.com/hanami/helpers.git', branch: 'develop' gem 'hanami-mailer', require: false, git: 'https://github.com/hanami/mailer.git', branch: 'develop' gem 'hanami-cli', require: false, git: 'https://github.com/hanami/cli.git', branch: 'develop' gem 'hanami-assets', require: false, git: 'https://github.com/hanami/assets.git', branch: 'develop' gem 'hanami-model', require: false, git: 'https://github.com/hanami/model.git', branch: 'develop' gem 'hanami', git: 'https://github.com/hanami/hanami.git', branch: 'develop' <%- else -%> gem 'hanami', '<%= hanami_version %>' gem 'hanami-model', '<%= hanami_model_version %>' <%- end -%> <%- if database_config_hash[:gem] -%> gem '<%= database_config_hash[:gem] %>' <%- end -%> <%- case template_engine.name when 'slim' -%> gem 'slim' <%- when 'haml' -%> gem 'haml' <%- end -%> <%- if code_reloading -%> group :development do # Code reloading # See: http://hanamirb.org/guides/projects/code-reloading gem 'shotgun' end <%- end -%> group :test, :development do gem 'dotenv', '~> 2.0' end group :test do <%- if test_framework.rspec? -%> gem 'rspec' <%- else -%> gem 'minitest' <%- end -%> gem 'capybara' end group :production do # gem 'puma' end
Version data entries
6 entries across 6 versions & 1 rubygems