mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
d27746ee0b
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'
|