mirror of
https://github.com/zebrajr/react.git
synced 2026-01-15 12:15:22 +00:00
This gives markdown headers an id so that we can link directly to sections of our docs. This is better than the alternative of adding them all ourselves.
22 lines
266 B
Ruby
22 lines
266 B
Ruby
source 'https://rubygems.org'
|
|
|
|
gem 'rake'
|
|
|
|
# jekyll, which builds it all
|
|
gem 'jekyll', '~>1.0'
|
|
|
|
# JSON
|
|
gem 'json'
|
|
|
|
# SASS for CSS
|
|
gem 'sass'
|
|
|
|
# For `rake watch`
|
|
gem 'rb-fsevent'
|
|
|
|
# Redcarpet for Markdown
|
|
gem 'redcarpet'
|
|
|
|
# For markdown header cleanup
|
|
gem 'sanitize'
|