Sha256: c7e7b7f7709bb1c849acf76a1d441631143963643aabc74584f9bfb53e1f9075

Contents?: true

Size: 1.97 KB

Versions: 1

Compression:

Stored size: 1.97 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', platforms: :ruby
  gem 'hanami-webconsole'
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

1 entries across 1 versions & 1 rubygems

Version Path
hanami-1.2.0 lib/hanami/cli/commands/new/Gemfile.erb