docbrown/docs/Gemfile
rhymes 5c17e5c25d
Upgrade Ruby to 2.7.1 (#7097) [deploy]
* Upgrade Ruby to 2.7.1

* Use explicit version in Dockerfile

* Fix docs Gemfile
2020-04-06 18:21:50 +02:00

13 lines
608 B
Ruby

# frozen_string_literal: true
ruby_version = File.read(
File.join(File.dirname(File.dirname(__FILE__)), ".ruby-version"),
).strip
source "https://rubygems.org"
ruby ruby_version
gem "activerecord", "~> 5.2.3" # Databases on Rails
gem "yard", "~> 0.9.19" # YARD is a documentation generation tool for the Ruby programming language
gem "yard-activerecord", "~> 0.0.16" # YARD extension that handles and interprets methods used when developing applications with ActiveRecord
gem "yard-activesupport-concern", "~> 0.0.1" # YARD extension that brings support for modules making use of ActiveSupport::Concern