You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
111 lines
3.1 KiB
111 lines
3.1 KiB
require 'rubygems'
|
|
require 'rake'
|
|
require 'rake/testtask'
|
|
require 'rake/rdoctask'
|
|
require 'rake/clean'
|
|
require 'rake/contrib/sshpublisher'
|
|
|
|
PKG_VERSION = "1.0.2"
|
|
|
|
$VERBOSE = nil
|
|
TEST_CHANGES_SINCE = Time.now - 600 # Recent tests = changed in last 10 minutes
|
|
|
|
desc "Run all the unit tests"
|
|
task :default => [ :test, :lines ]
|
|
|
|
desc "Run the unit tests in test"
|
|
Rake::TestTask.new(:test) { |t|
|
|
t.libs << "test"
|
|
t.test_files = FileList['test/*_test.rb', 'test/component/*_test.rb']
|
|
t.verbose = true
|
|
}
|
|
|
|
# rcov code coverage
|
|
rcov_path = '/usr/local/bin/rcov'
|
|
rcov_test_output = "./test/coverage"
|
|
rcov_exclude = "interactive.rb,read_write.rb,fixtures"
|
|
|
|
# Add our created paths to the 'rake clobber' list
|
|
CLOBBER.include(rcov_test_output)
|
|
|
|
desc 'Removes all previous unit test coverage information'
|
|
task (:reset_unit_test_coverage) do |t|
|
|
rm_rf rcov_unit_test_output
|
|
mkdir rcov_unit_test_output
|
|
end
|
|
|
|
desc 'Run all unit tests with Rcov to measure coverage'
|
|
Rake::TestTask.new(:rcov) do |t|
|
|
t.libs << "test"
|
|
t.pattern = 'test/**/*_test.rb'
|
|
t.ruby_opts << rcov_path
|
|
t.ruby_opts << "-o #{rcov_test_output}"
|
|
t.ruby_opts << "-x #{rcov_exclude}"
|
|
t.verbose = true
|
|
end
|
|
|
|
# Generate the RDoc documentation
|
|
Rake::RDocTask.new(:doc) { |rdoc|
|
|
rdoc.main = 'README'
|
|
rdoc.rdoc_files.include('lib/**/*.rb', 'README')
|
|
rdoc.rdoc_files.include('GPL', 'COPYING')
|
|
rdoc.rdoc_dir = 'docs/api'
|
|
rdoc.title = "iCalendar -- Internet Calendaring for Ruby"
|
|
rdoc.options << "--include=examples --line-numbers --inline-source"
|
|
rdoc.options << "--accessor=ical_component,ical_property,ical_multi_property"
|
|
}
|
|
|
|
Gem::manage_gems
|
|
require 'rake/gempackagetask'
|
|
|
|
spec = Gem::Specification.new do |s|
|
|
s.name = "icalendar"
|
|
s.version = PKG_VERSION
|
|
s.homepage = "http://icalendar.rubyforge.org/"
|
|
s.platform = Gem::Platform::RUBY
|
|
s.summary = "A ruby implementation of the iCalendar specification (RFC-2445)."
|
|
s.description = "Implements the iCalendar specification (RFC-2445) in Ruby. This allows for the generation and parsing of .ics files, which are used by a variety of calendaring applications."
|
|
|
|
s.files = FileList["{test,lib,docs,examples}/**/*"].to_a
|
|
s.files += ["Rakefile", "README", "COPYING", "GPL" ]
|
|
s.require_path = "lib"
|
|
s.autorequire = "icalendar"
|
|
s.has_rdoc = true
|
|
s.extra_rdoc_files = ["README", "COPYING", "GPL"]
|
|
s.rdoc_options.concat ['--main', 'README']
|
|
|
|
s.author = "Jeff Rose"
|
|
s.email = "rosejn@gmail.com"
|
|
end
|
|
|
|
Rake::GemPackageTask.new(spec) do |pkg|
|
|
pkg.gem_spec = spec
|
|
pkg.need_tar = true
|
|
pkg.need_zip = true
|
|
end
|
|
|
|
desc 'Install the gem globally (requires sudo)'
|
|
task :install => :package do |t|
|
|
`sudo gem install pkg/icalendar-#{PKG_VERSION}.gem`
|
|
end
|
|
|
|
task :lines do
|
|
lines = 0
|
|
codelines = 0
|
|
Dir.foreach("lib/icalendar") { |file_name|
|
|
next unless file_name =~ /.*rb/
|
|
|
|
f = File.open("lib/icalendar/" + file_name)
|
|
|
|
while line = f.gets
|
|
lines += 1
|
|
next if line =~ /^\s*$/
|
|
next if line =~ /^\s*#/
|
|
codelines += 1
|
|
end
|
|
}
|
|
puts "\n------------------------------\n"
|
|
puts "Total Lines: #{lines}"
|
|
puts "Lines of Code: #{codelines}"
|
|
end
|