Bitcoin.org/Gemfile
dependabot[bot] c9f0e5ca63
Bump kramdown from 2.2.1 to 2.3.0
Bumps [kramdown](https://github.com/gettalong/kramdown) from 2.2.1 to 2.3.0.
- [Release notes](https://github.com/gettalong/kramdown/releases)
- [Changelog](https://github.com/gettalong/kramdown/blob/master/doc/news.page)
- [Commits](https://github.com/gettalong/kramdown/commits)

Signed-off-by: dependabot[bot] <support@github.com>
2020-08-08 00:23:28 +00:00

34 lines
1.2 KiB
Ruby

source 'https://rubygems.org'
## If you update the version here, also update it in .travis.yml and
## docs/setting-up-your-environment.md. Then push your branch and
## make sure Travis supports that version. Then remind one of the
## site maintainers that they need to run `rvm install <VERSION>` on
## the build server(s) before they commit to master
ruby '2.5.8'
## Used on the build server. If you add a package here (like nokogiri)
## that has non-Gem dependencies (like zlib), please remind the site
## maintainers that they need to manually update the build server(s)
## before they commit to master. If `bundle install` can satisfy all
## your dependencies, then nothing extra needs to be done
group :development do
gem 'ffi-icu'
gem 'jekyll', '~>4.0'
gem 'json', '>= 1.9'
gem 'less', '2.4.0'
gem 'kramdown', '~>2.3'
gem 'RedCloth', ">= 4.3.0"
gem 'therubyracer' # required by less
gem 'jshintrb', '~>0.3.0'
gem 'safe_yaml'
gem 'json-schema'
end
## Not used on build server. Only used by developers and Travis CI, so
## you can put whatever you want here and bundler will tell us humans to
## install the new Gems.
group :slow_test do
gem 'html-proofer', '2.1.0'
end