Use Yard to generate documentation. Included in the `.yardopts` file is configuration to also publish the markdown files in the `wiki/` directory. wiki/ - addons.md: Information on writing new addons. - database.md: Information on using the database and migrations db/migrate/*: Rename in accordance with documentation Rakefile: Add the Yard Rake tasks
13 lines
215 B
Ruby
13 lines
215 B
Ruby
# frozen_string_literal: true
|
|
|
|
source 'https://rubygems.org'
|
|
gem 'matrix_sdk', '~> 2.0'
|
|
gem 'faraday', '~> 1.0'
|
|
|
|
gem "activerecord", "~> 6.1"
|
|
|
|
gem "rake", "~> 13.0"
|
|
|
|
gem "sqlite3", "~> 1.4"
|
|
|
|
gem "yard", "~> 0.9.26"
|