mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-22 18:00:06 +01:00
21 lines
487 B
Ruby
21 lines
487 B
Ruby
# A sample Gemfile
|
|
source "https://rubygems.org"
|
|
|
|
group :development do
|
|
|
|
gem 'jekyll'
|
|
gem 'jekyll-sitemap'
|
|
gem 'jekyll-timeago'
|
|
gem 'jekyll-redirect-from'
|
|
gem 'rouge', '1.6.2'
|
|
gem 'mini_magick'
|
|
gem 'fileutils'
|
|
# for faster LSI generation
|
|
#gem 'gsl'
|
|
# from http://tonyarnold.com/2014/03/27/speeding-up-jekylls-latent-semantic-mapping.html
|
|
gem 'narray', :git => "https://github.com/tonyarnold/narray"
|
|
gem 'gsl', :git => "https://github.com/tonyarnold/rb-gsl"
|
|
|
|
end
|
|
|