-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRakefile
28 lines (25 loc) · 992 Bytes
/
Rakefile
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
28
require 'rake'
require 'rake/testtask'
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "xml_serialization"
gem.summary = %Q{Extends the XML serialization support in activesupport to allow for arrays containing strings, symbols, and integers.}
gem.email = "david@folklogic.com"
gem.homepage = "http://github.com/alpinegizmo/xml_serialization"
gem.description = "Extends the XML serialization support in activesupport to allow for arrays containing strings, symbols, and integers."
gem.authors = ["Larry Baltz", "David Anderson"]
gem.add_dependency 'builder'
gem.add_dependency 'activesupport'
end
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end
desc 'Test the xml_serialization gem.'
Rake::TestTask.new(:test) do |t|
t.libs << 'lib'
t.pattern = 'test/**/*_test.rb'
t.verbose = true
end
desc 'Default: run unit tests.'
task :default => :test