mirror of
https://github.com/seigler/dash-docs
synced 2025-07-27 09:46:12 +00:00
* update to modern, supported Ruby 2.0 version * update gems to current versions using Bundler * make jekyll configs confirm to current version * switch deb package dependencies to cross-platform rvm * ignore bundled dependencies * some README mods as per @harding + @saivann
14 lines
203 B
Ruby
14 lines
203 B
Ruby
source 'https://rubygems.org'
|
|
|
|
ruby '2.0.0'
|
|
|
|
group :development do
|
|
gem 'ffi-icu'
|
|
gem 'jekyll'
|
|
gem 'json'
|
|
gem 'less'
|
|
gem 'kramdown'
|
|
gem 'RedCloth'
|
|
gem 'therubyracer' # required by less
|
|
end
|
|
|