pmd/Gemfile

15 lines
460 B
Ruby
Raw Normal View History

2018-07-23 23:06:46 +08:00
source 'https://rubygems.org/'
2018-08-01 22:24:37 +02:00
gem 'pmdtester', '~> 1.0.0.pre.beta3'
2018-07-23 23:06:46 +08:00
gem 'danger', '~> 5.6', '>= 5.6'
2018-08-15 03:08:46 +02:00
2018-08-15 04:08:15 +02:00
# I think we could skip installing these if we're not a release build
# https://docs.travis-ci.com/user/languages/ruby/#speeding-up-your-build-by-excluding-non-essential-dependencies
# I don't know where to put that in .travis.yml though...
group :release_notes_preprocessing do
gem 'liquid', '>=4.0.0'
gem 'safe_yaml', '>=1.0'
end
2018-07-23 23:06:46 +08:00
# vim: syntax=ruby