require 'rubygems/dependency_installer' module Bones::Plugins::Gem include ::Bones::Helpers extend self module Syntax # Adds the given gem _name_ to the current project's dependency list. An # optional gem _version_ can be given. If omitted, the newest gem version # will be used. # def depend_on( name, *args ) opts = Hash === args.last ? args.pop : {} version = args.first || opts[:version] development = opts.key?(:development) ? opts[:development] : opts.key?(:dev) ? opts[:dev] : false spec = Gem.source_index.find_name(name).last version = spec.version.to_s if version.nil? and !spec.nil? dep = case version when nil; [name] when %r/^\d/; [name, ">= #{version}"] else [name, version] end development ? ::Bones.config.gem.development_dependencies << dep : ::Bones.config.gem.dependencies << dep end end def initialize_gem ::Bones.config { desc 'Configuration settings for gem packaging.' gem { dependencies Array.new, :desc => <<-__ Array of gem dependencies. A convenience method is provided to add gem dependencies, and so you should not muck about with this configuration setting manually. | depend_on 'rake' | depend_on 'rspec', '1.2.8' # expands to '>= 1.2.8' | depend_on 'main', '~> 2.0' __ development_dependencies Array.new, :desc => <<-__ Array of development gem dependencies. A convenience method is provided to add gem dependencies, and so you should not muck about with this configuration setting manually. | depend_on 'bones', :development => true | depend_on 'mocha', :version => '0.9.8', :development => true __ executables nil, :desc => <<-__ Array of executables provided by your project. All files in the 'bin' folder will be included by default. However, if you are using a non-standard location for your executables then you will need to include them explicitly here as an Array. __ extensions FileList['ext/**/extconf.rb'], :desc => <<-__ Array of gem extensions. This is the list of 'extconf.rb' files provided by your project. Rubygems uses this list of files to compile extensions when installing your gem. __ files nil, :desc => <<-__ The list of files to include when packaging up your gem. This defaults to all files in the current directory excluding those matched by the 'exclude' option and the 'ignore_file'. You can supply your Array of files if you desire. __ need_tar true, :desc => <<-__ When set to true a tar-gzip file will be produced along with your gem. The default is true. __ need_zip false, :desc => <<-__ When set to true a zip file will be produced along with your gem. The default is false. __ extras Hash.new, :desc => <<-__ A hash of extra Gem::Specification settings that are otherwise not provided for by Mr Bones. You will need to refer to the rubygems documentation for a complete list of specification settings. __ } } have?(:gem) { true } end def post_load config = ::Bones.config config.gem.files ||= manifest config.gem.executables ||= config.gem.files.find_all {|fn| fn =~ %r/^bin/} config.gem.development_dependencies << ['bones', ">= #{Bones.version}"] end def define_tasks config = ::Bones.config namespace :gem do config.gem._spec = Gem::Specification.new do |s| s.name = config.name s.version = config.version s.summary = config.summary s.authors = Array(config.authors) s.email = config.email s.homepage = Array(config.url).first s.rubyforge_project = config.name if !config.rubyforge.nil? and config.rubyforge.name s.rubyforge_project = config.rubyforge.name end s.description = config.description config.gem.dependencies.each do |dep| s.add_dependency(*dep) end config.gem.development_dependencies.each do |dep| s.add_development_dependency(*dep) end s.files = config.gem.files s.executables = config.gem.executables.map {|fn| File.basename(fn)} s.extensions = config.gem.files.grep %r/extconf\.rb$/ s.bindir = 'bin' dirs = Dir["{#{config.libs.join(',')}}"] s.require_paths = dirs unless dirs.empty? if have? :rdoc incl = Regexp.new(config.rdoc.include.join('|')) excl = config.rdoc.exclude.dup.concat %w[\.rb$ ^(\.\/|\/)?ext] excl = Regexp.new(excl.join('|')) rdoc_files = config.gem.files.find_all do |fn| case fn when excl; false when incl; true else false end end s.rdoc_options = config.rdoc.opts + ['--main', config.rdoc.main] s.extra_rdoc_files = rdoc_files s.has_rdoc = true end if config.test if test ?f, config.test.file s.test_file = config.test.file else s.test_files = config.test.files.to_a end end # Do any extra stuff the user wants config.gem.extras.each do |msg, val| case val when Proc val.call(s.send(msg)) else s.send "#{msg}=", val end end end # Gem::Specification.new ::Bones::GemPackageTask.new(config.gem._spec) do |pkg| pkg.need_tar = config.gem.need_tar pkg.need_zip = config.gem.need_zip end desc 'Package and upload to rubygems.org' task :release => [:clobber, 'gem'] do |t| v = ENV['VERSION'] or abort 'Must supply VERSION=x.y.z' abort "Versions don't match #{v} vs #{config.version}" if v != config.version Dir.glob("pkg/#{config.gem._spec.full_name}*.gem").each { |fn| sh "#{GEM} push #{fn}" } end desc 'Show information about the gem' task :debug => 'gem:prereqs' do puts config.gem._spec.to_ruby end desc 'Write the gemspec ' task :spec => 'gem:prereqs' do File.open("#{config.name}.gemspec", 'w') do |f| f.write config.gem._spec.to_ruby end end desc 'Install the gem' task :install => [:clobber, 'gem:package'] do sh "#{SUDO} #{GEM} install --local pkg/#{config.gem._spec.full_name}" # use this version of the command for rubygems > 1.0.0 #sh "#{SUDO} #{GEM} install --no-update-sources pkg/#{config.gem._spec.full_name}" end desc 'Uninstall the gem' task :uninstall do installed_list = Gem.source_index.find_name(config.name) if installed_list and installed_list.collect { |s| s.version.to_s}.include?(config.version) then sh "#{SUDO} #{GEM} uninstall --version '#{config.version}' --ignore-dependencies --executables #{config.name}" end end desc 'Reinstall the gem' task :reinstall => [:uninstall, :install] desc 'Cleanup the gem' task :cleanup do sh "#{SUDO} #{GEM} cleanup #{config.gem._spec.name}" end desc 'Install gem dependencies' task :install_dependencies => 'gem:prereqs' do installer = Gem::DependencyInstaller.new config.gem._spec.dependencies.each {|dep| next if Gem.available? dep $stdout.puts "Installing #{dep.name}" installer.install dep installer.installed_gems.each {|spec| $stdout.puts "Successfully installed #{spec.full_name}" } } end end # namespace :gem desc 'Alias to gem:package' task :gem => 'gem:package' task :clobber => 'gem:clobber_package' remove_desc_for_task 'gem:clobber_package' end # Scans the current working directory and creates a list of files that are # candidates to be in the manifest. # def manifest config = ::Bones.config files = [] exclude = config.exclude.dup comment = %r/^\s*#/ # process the ignore file and add the items there to the exclude list if test(?f, config.ignore_file) ary = [] File.readlines(config.ignore_file).each do |line| next if line =~ comment line.chomp! line.strip! next if line.nil? or line.empty? glob = line =~ %r/\*\./ ? File.join('**', line) : line Dir.glob(glob).each {|fn| ary << "^#{Regexp.escape(fn)}"} end exclude.concat ary end # generate a regular expression from the exclude list exclude = Regexp.new(exclude.join('|')) Find.find '.' do |path| path.sub! %r/^(\.\/|\/)/o, '' next unless test ?f, path next if path =~ exclude files << path end files.sort! end end # Bones::Plugins::Gem # EOF