mirror of
https://github.com/danbulant/api_docs
synced 2026-05-19 20:28:52 +00:00
26 lines
No EOL
629 B
Ruby
26 lines
No EOL
629 B
Ruby
# If you have OpenSSL installed, we recommend updating
|
|
# the following line to use "https"
|
|
source 'http://rubygems.org'
|
|
|
|
gem "middleman", "~>3.1.5"
|
|
|
|
# For syntax highlighting
|
|
gem "middleman-syntax"
|
|
|
|
# Plugin for middleman to generate Github pages
|
|
gem 'middleman-gh-pages'
|
|
|
|
# Live-reloading plugin
|
|
gem "middleman-livereload", "~> 3.1.0"
|
|
|
|
gem 'redcarpet', git: 'https://github.com/vmg/redcarpet.git'
|
|
|
|
gem "github-linguist"
|
|
|
|
# For faster file watcher updates on Windows:
|
|
gem "wdm", "~> 0.1.0", :platforms => [:mswin, :mingw]
|
|
|
|
# Cross-templating language block fix for Ruby 1.8
|
|
platforms :mri_18 do
|
|
gem "ruby18_source_location"
|
|
end |