Skip to content

Commit

Permalink
Use Bundler for dependency management
Browse files Browse the repository at this point in the history
  • Loading branch information
dbloete authored and imathis committed May 26, 2010
1 parent 654428a commit 091ef1c
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,4 +1,5 @@
site
.bundle
.DS_Store
.rvmrc
.sass-cache
Expand Down
10 changes: 10 additions & 0 deletions Gemfile
@@ -0,0 +1,10 @@
source "http://rubygems.org"
source "http://gems.github.com"

gem 'activesupport', "2.3.2"
gem 'henrik-jekyll'
gem 'compass'
gem 'compass-colors'
gem 'rdiscount'
gem 'fssm'
gem 'serve'
5 changes: 4 additions & 1 deletion Rakefile
@@ -1,4 +1,7 @@
require 'active_support'
require "rubygems"
require "bundler"
Bundler.setup

require 'source/_helpers'

site_url = "http://yoursite.com" # deployed site url for sitemap.xml generator
Expand Down

0 comments on commit 091ef1c

Please sign in to comment.