Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1. Added missing dependency 'libxml-ruby' #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ begin
gem.add_dependency 'mime-types', ">= 0"
gem.add_dependency 'uuid', ">= 0"
gem.add_dependency 'jekyll', ">= 0"

gem.add_dependency 'libxml-ruby', ">= 0"

gem.add_development_dependency "shoulda", ">= 0"
end
Jeweler::GemcutterTasks.new
Expand Down Expand Up @@ -46,7 +47,7 @@ task :test => :check_dependencies

task :default => :test

require 'rake/rdoctask'
require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
version = File.exist?('VERSION') ? File.read('VERSION') : ""

Expand Down