# -*- ruby -*- #-- # Copyright (C) 2008 David Kellum # # Permission is hereby granted, free of charge, to any person # obtaining a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, # including without limitation the rights to use, copy, modify, merge, # publish, distribute, sublicense, and/or sell copies of the Software, # and to permit persons to whom the Software is furnished to do so, # subject to the following conditions: # # The above copyright notice and this permission notice shall be # included in all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #++ require 'rubygems' require 'hoe' $LOAD_PATH << './lib' ENV['NODOT'] = "no thank you" # Instead of 'slf4j' to avoid loading slf4j-api in Rake parent loader require 'slf4j/base' loaders = SLF4J::ADAPTERS.flatten.compact loader_files = loaders.map { |adp| "lib/slf4j/#{adp}.rb" } jars = [ 'slf4j-api' ] jars += SLF4J::ADAPTERS.map { |i,o| [ i, "slf4j-#{o}" ] }.flatten.compact jars.map! { |n| "#{n}-#{SLF4J::SLF4J_VERSION}.jar" } jar_files = jars.map { |jar| "lib/slf4j/#{jar}" } desc "Update the Manifest with actual jars/loaders" task :manifest do out = File.new( 'Manifest.txt', 'w' ) begin out.write < [ 'pom.xml', 'assembly.xml' ] do sh( 'mvn package' ) end jars.each do |jar| file "lib/slf4j/#{jar}" => [ ASSEMBLY ] do cp_r( File.join( ASSEMBLY, jar ), 'lib/slf4j' ) end end [ :gem, :test ].each { |t| task t => ( jar_files + loader_files ) } task :mvn_clean do rm_f( jar_files ) rm_f( loader_files ) sh( 'mvn clean' ) end task :clean => :mvn_clean task :tag do tag = "slf4j-#{SLF4J::VERSION}" svn_base = 'svn://localhost/subversion.repo/src/gems' tag_url = "#{svn_base}/tags/#{tag}" dname = File.dirname( __FILE__ ) dname = '.' if Dir.getwd == dname stat = `svn status #{dname}` stat.strip! if stat if ( stat && stat.length > 0 ) $stderr.puts( "Resolve the following before tagging (svn status):" ) $stderr.puts( stat ) else sh( "svn cp -m 'tag [#{tag}]' #{dname} #{tag_url}" ) end end hoe = Hoe.new( "slf4j", SLF4J::VERSION ) do |p| p.developer( "David Kellum", "dek-ruby@gravitext.com" ) p.rubyforge_name = "rjack" p.rdoc_pattern = /^(lib.*\.(rb|txt))|[^\/]*\.txt$/ end