-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
33 lines (26 loc) · 1.68 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# frozen_string_literal: true
source "https://rubygems.org"
gemspec
unless ENV["TRAVIS"]
gem "byebug", require: false, platforms: :mri if RUBY_VERSION >= "2.2.0"
gem "yard", require: false
end
gem "vanilla-ujs", "1.3.0"
gem "hanami-utils", "~> 1.3", require: false, git: "https://github.com/hanami/utils.git", branch: "1.3.x"
gem "hanami-validations", "~> 1.3", require: false, git: "https://github.com/hanami/validations.git", branch: "1.3.x"
gem "hanami-router", "~> 1.3", require: false, git: "https://github.com/hanami/router.git", branch: "1.3.x"
gem "hanami-controller", "~> 1.3", require: false, git: "https://github.com/hanami/controller.git", branch: "1.3.x"
gem "hanami-view", "~> 1.3", require: false, git: "https://github.com/hanami/view.git", branch: "1.3.x"
gem "hanami-model", "~> 1.3", require: false, git: "https://github.com/hanami/model.git", branch: "1.3.x"
gem "hanami-helpers", "~> 1.3", require: false, git: "https://github.com/hanami/helpers.git", branch: "1.3.x"
gem "hanami-mailer", "~> 1.3", require: false, git: "https://github.com/hanami/mailer.git", branch: "1.3.x"
gem "hanami-assets", "~> 1.3", require: false, git: "https://github.com/hanami/assets.git", branch: "1.3.x"
gem "hanami", "~> 1.3", require: false, git: "https://github.com/hanami/hanami.git", branch: "1.3.x"
gem "hanami-webconsole", "~> 0.1", require: false, git: "https://github.com/hanami/webconsole.git", branch: "0.1.x"
gem "hanami-devtools", git: "https://github.com/hanami/devtools.git", require: false, branch: "1.3.x"
platforms :ruby do
gem "sqlite3"
end
platforms :jruby do
gem "jdbc-sqlite3"
end