rake-compiler plugin for hoe c-extensions.
This plugin is for extconf.rb based projects that want to use rake-compiler to deal with packaging binary gems. It expects a standard extconf setup, namely that your extconf.rb and c source is located in: ext/project-name.
compile |
Compile your c-extension. |
Define tasks for compiler plugin.
# File lib/hoe/compiler.rb, line 33 def define_compiler_tasks require "rake/extensiontask" Rake::ExtensionTask.new self.name, spec do |ext| ext.lib_dir = File.join(*["lib", self.name, ENV["FAT_DIR"]].compact) end compile_tasks.each do |t| task t => :compile end end
Initialize variables for compiler plugin.
# File lib/hoe/compiler.rb, line 23 def initialize_compiler self.compile_tasks = [:multi, :test] self.spec_extras = { :extensions => ["ext/#{self.name}/extconf.rb"] } extra_dev_deps << ["rake-compiler", "~> 0.7"] end
Generated with the Darkfish Rdoc Generator 2.