* Upgrade rubocop to 0.81.0 * Reordered rubocop file and updated it * Regenerate todo * Correct some things * Fix specs
11 lines
577 B
Ruby
11 lines
577 B
Ruby
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
|