-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathRakefile
More file actions
27 lines (22 loc) · 715 Bytes
/
Rakefile
File metadata and controls
27 lines (22 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- ruby -*-
require 'rubygems'
require 'hoe'
require './lib/objectify_xml.rb'
require 'spec/rake/spectask'
Hoe.new('objectify-xml', Objectify::Xml::VERSION) do |p|
p.rubyforge_name = 'objectify-xml' # if different than lowercase project name
p.developer('pangloss', 'darrick@innatesoftware.com')
p.extra_deps = %w[nokogiri activesupport]
p.testlib = 'spec'
p.test_globs = 'spec/**/*_spec.rb'
p.url = 'http://github.com/pangloss/objectify_xml'
p.remote_rdoc_dir = ''
end
desc "Run all specifications"
Spec::Rake::SpecTask.new(:spec) do |t|
t.libs = ['lib', 'spec']
t.spec_opts = ['--colour', '--format', 'specdoc']
end
Rake::Task[:default].clear
task :default => [:spec]
# vim: syntax=Ruby