Skip to content

Instantly share code, notes, and snippets.

@yangsu
Created August 9, 2013 21:48
Show Gist options
  • Save yangsu/6197545 to your computer and use it in GitHub Desktop.
Save yangsu/6197545 to your computer and use it in GitHub Desktop.
Gemfile for Octopress
source "http://rubygems.org"
group :development do
gem 'rake', '~> 0.9.2'
gem 'rack', '~> 1.4.1'
gem 'jekyll', '~> 0.11.2'
gem 'rdiscount', '~> 1.6.8'
gem 'redcarpet', '~> 2.1.1'
gem 'maruku', '~> 0.6.1'
gem 'pygments.rb', '~> 0.2.12'
gem 'RedCloth', '~> 4.2.9'
gem 'haml', '~> 3.1.6'
gem 'compass', '~> 0.12.1'
gem 'rubypants', '~> 0.2.0'
gem 'rb-fsevent', '~> 0.9'
gem 'stringex', '~> 1.4.0'
gem 'liquid', '~> 2.3.0'
end
gem 'sinatra', '~> 1.3.2'
@danijeljw
Copy link

source "https://rubygems.org"

group :development do
  gem 'redcarpet', '~> 2.1.1'
  gem 'albino', '~> 1.3.3'
  gem 'rake', '~> 0.9'
  gem 'jekyll', '~> 0.12'
  gem 'rdiscount', '~> 2.0.7'
  gem 'pygments.rb', '~> 0.3.4'
  gem 'RedCloth', '~> 4.2.9'
  gem 'haml', '~> 3.1.7'
  gem 'compass', '~> 0.12.2'
  gem 'sass', '~> 3.2'
  gem 'sass-globbing', '~> 1.0.0'
  gem 'rubypants', '~> 0.2.0'
  gem 'rb-fsevent', '~> 0.9'
  gem 'stringex', '~> 1.4.0'
  gem 'liquid', '~> 2.3.0'
  gem 'directory_watcher', '1.4.1'
end

gem 'sinatra', '~> 1.4.2'

This is what mine looks like. Slightly different.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment