forked from decko-commons/decko
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
30 lines (24 loc) · 727 Bytes
/
Gemfile
File metadata and controls
30 lines (24 loc) · 727 Bytes
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
# This file specifies the default gem set used in semaphore. It is here to encourage
# frequent updates
source "http://rubygems.org"
path "./" do
gem "card", require: false
gem "decko"
end
gem "mysql2"
gem "thin"
path "./mod" do
gem "card-mod-defaults"
gem "card-mod-delayed_job"
gem "card-mod-monkey", group: :development
end
path "./support" do
gem "decko-cucumber", group: :test
gem "decko-cypress", group: %i[cypress test]
gem "decko-profile", group: :profile
gem "decko-rspec", group: :test
gem "decko-spring", group: %i[test development]
end
# PLATYPUSES
# This mod is strongly recommended for platypuses – coders working on the decko core
gem "card-mod-platypus", group: :test, path: "./mod"