forked from hitobito/hitobito_cevi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
25 lines (18 loc) · 878 Bytes
/
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
# encoding: utf-8
# Copyright (c) 2014, CEVI Regionalverband ZH-SH-GL. This file is part of
# hitobito and licensed under the Affero General Public License version 3
# or later. See the COPYING file at the top-level directory or at
# https://github.com/hitobito/hitobito.
require File.expand_path('../app_root', __FILE__)
source 'https://rubygems.org'
# Declare your gem's dependencies in hitobito_cevi.gemspec.
# Bundler will treat runtime dependencies like base dependencies, and
# development dependencies will be added by default to the :development group.
gemspec
# Load application Gemfile for all application dependencies.
# rubocop:disable Eval
eval File.read(File.expand_path('Gemfile', ENV['APP_ROOT']))
group :development, :test do
# Explicitly define the path for dependencies on other wagons.
gem 'hitobito_youth', path: "#{ENV['APP_ROOT']}/../"
end