This commit is contained in:
Philipp Rothmann 2022-12-20 16:26:37 +01:00
commit 135b14c868
35 changed files with 1363 additions and 0 deletions

16
Gemfile Normal file
View file

@ -0,0 +1,16 @@
load File.expand_path('../app_root.rb', __FILE__)
source 'https://rubygems.org'
# Declare your gem's dependencies in hitobito_lit.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.
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_other_wagon', :path => "#{ENV['APP_ROOT']}/vendor/wagons"
end