forked from archivesspace/archivesspace
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
29 lines (22 loc) · 635 Bytes
/
Copy pathGemfile
File metadata and controls
29 lines (22 loc) · 635 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
# frozen_string_literal: true
source 'https://rubygems.org'
# Gemfile for supporting rake tasks
gem 'rake'
group :release_notes do
gem 'git', '~> 2.3'
gem 'github_api'
end
group :rubocop do
gem 'rubocop', '~> 1.64.1', require: false
end
gem 'thor', group: [:docs, :thor, :release_notes]
gem 'yard', group: :docs
gem 'erb', group: :docs
gem 'cgi', '0.3.1', group: :docs
gem 'csv', group: :docs
backend_gemfile = File.expand_path('./backend/Gemfile', File.dirname(__FILE__))
if File.exist?(backend_gemfile)
self.instance_eval(File.read(backend_gemfile), backend_gemfile, 1)
else
raise "Cannot find backend Gemfile"
end