mirror of
https://github.com/seigler/dash-docs
synced 2025-07-27 01:36:13 +00:00
* Require in Makefile that everyone use bundle to remove inconsistencies * Require in Gemfile that everyone use Jekyll 1.3.* * Require in Gemfile that everyone use Ruby 2.0.0 (already used by Travis and most developers) * Remove workaround _plugin/svg.rb which showed SVG files in `jekyll serve` (fixed in Jekyll 1.0.0) * Remove inconsistent file path workarounds in _plugins/autocrossref.rb and _plugins/inline-template.rb
20 lines
531 B
Ruby
20 lines
531 B
Ruby
source 'https://rubygems.org'
|
|
|
|
## If you update the version here, also update it in .travis.yml and
|
|
## README.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.0.0'
|
|
|
|
group :development do
|
|
gem 'ffi-icu'
|
|
gem 'jekyll', '~>1.3.0'
|
|
gem 'json'
|
|
gem 'less'
|
|
gem 'kramdown'
|
|
gem 'RedCloth'
|
|
gem 'therubyracer' # required by less
|
|
gem 'html-proofer'
|
|
end
|
|
|