mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-30 16:37:57 +00:00
0269532fa8
* Add templates * Add folder for local storage of the digests * Add first draft of the changelog scripts * Enable Audits in the change template * Fixes for Polkadot * Fix templating issue in case there is no high prio change * Fix Ruby setup * Remove shell * Fix chain names * Fix ENV * Fix how to get runtime * Fix runtime_dir * Fix context location * Pin changelogerator to a specific version
22 lines
361 B
Ruby
22 lines
361 B
Ruby
# frozen_string_literal: true
|
|
|
|
source 'https://rubygems.org'
|
|
|
|
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
|
|
|
|
gem 'octokit', '~> 4'
|
|
|
|
gem 'git_diff_parser', '~> 3'
|
|
|
|
gem 'toml', '~> 0.3.0'
|
|
|
|
gem 'rake', group: :dev
|
|
|
|
gem 'optparse', '~> 0.1.1'
|
|
|
|
gem 'logger', '~> 1.4'
|
|
|
|
gem 'test-unit', group: :dev
|
|
|
|
gem 'rubocop', group: :dev, require: false
|