forked from jodosha/soundeck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
28 lines (21 loc) · 1.1 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
# frozen_string_literal: true
source "https://rubygems.org"
# gem "hanami-utils", "~> 2.0.alpha", require: false, git: "https://github.com/hanami/utils.git", branch: "unstable"
# gem "hanami-router", "~> 2.0.alpha", require: false, git: "https://github.com/hanami/router.git", branch: "unstable"
# gem "hanami-controller", "~> 2.0.alpha", require: false, git: "https://github.com/hanami/controller.git", branch: "unstable"
# gem "hanami-cli", "~> 1.0.alpha", require: false, git: "https://github.com/hanami/cli.git", branch: "unstable"
# gem "hanami", "~> 2.0.alpha", require: false, git: "https://github.com/hanami/hanami.git", branch: "unstable"
gem "hanami", "~> 2.0.alpha"
# gem "hanami", path: "../hanami/hanami"
group :plugins, :development do
# gem "hanami-reloader", "~> 1.0.alpha", git: "https://github.com/hanami/reloader.git", branch: "unstable"
gem "hanami-reloader", "~> 1.0.alpha"
end
group :development do
gem "guard-puma", "~> 0.5"
end
group :development, :test do
gem "byebug", require: false
end
gem "puma", "~> 3.12"
gem "dotenv", "~> 2.5"