Sha256: 6e72be2472bd6becd782eb9b77c059f73b4b286dd6238f5b1268659776880c80

Contents?: true

Size: 895 Bytes

Versions: 7177

Compression:

Stored size: 895 Bytes

Contents

require 'ffi/tools/generator'
require 'rake'
require 'rake/tasklib'

##
# Add Rake tasks that generate files with C structs for FFI::Struct and C constants.
#
# @example a simple example for your Rakefile
#   require "ffi/tools/generator_task"
#   # Add a task to generate my_object.rb out of my_object.rb.ffi
#   FFI::Generator::Task.new ["my_object.rb"], cflags: "-I/usr/local/mylibrary"
#
# The generated files are also added to the 'clear' task.
#
# @see FFI::Generator for a description of the file content
class FFI::Generator::Task < Rake::TaskLib

  def initialize(rb_names, options={})
    task :clean do rm_f rb_names end

    rb_names.each do |rb_name|
      ffi_name = "#{rb_name}.ffi"

      file rb_name => ffi_name do |t|
        puts "Generating #{rb_name}..." if Rake.application.options.trace

        FFI::Generator.new ffi_name, rb_name, options
      end
    end
  end

end

Version data entries

7,177 entries across 7,168 versions & 43 rubygems

Version Path
ory-client-0.0.1.alpha39 vendor/bundle/ruby/2.5.0/gems/ffi-1.15.4/lib/ffi/tools/generator_task.rb
ory-client-0.0.1.alpha38 vendor/bundle/ruby/2.5.0/gems/ffi-1.15.4/lib/ffi/tools/generator_task.rb
ory-client-0.0.1.alpha37 vendor/bundle/ruby/2.5.0/gems/ffi-1.15.4/lib/ffi/tools/generator_task.rb
ory-client-0.0.1.alpha36 vendor/bundle/ruby/2.5.0/gems/ffi-1.15.4/lib/ffi/tools/generator_task.rb
vagrant-unbundled-2.2.19.0 vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/tools/generator_task.rb
ory-kratos-client-0.8.2.alpha1 vendor/bundle/ruby/2.5.0/gems/ffi-1.15.4/lib/ffi/tools/generator_task.rb
ory-client-0.0.1.alpha31 vendor/bundle/ruby/2.5.0/gems/ffi-1.15.4/lib/ffi/tools/generator_task.rb
ory-client-0.0.1.alpha30 vendor/bundle/ruby/2.5.0/gems/ffi-1.15.4/lib/ffi/tools/generator_task.rb
ory-client-0.0.1.alpha29 vendor/bundle/ruby/2.5.0/gems/ffi-1.15.4/lib/ffi/tools/generator_task.rb
ory-client-0.0.1.alpha28 vendor/bundle/ruby/2.5.0/gems/ffi-1.15.4/lib/ffi/tools/generator_task.rb
ory-client-0.0.1.alpha27 vendor/bundle/ruby/2.5.0/gems/ffi-1.15.4/lib/ffi/tools/generator_task.rb
ory-client-0.0.1.alpha24 vendor/bundle/ruby/2.5.0/gems/ffi-1.15.4/lib/ffi/tools/generator_task.rb
date_n_time_picker_activeadmin-0.1.2 vendor/bundle/ruby/2.6.0/gems/ffi-1.15.4/lib/ffi/tools/generator_task.rb
date_n_time_picker_activeadmin-0.1.1 vendor/bundle/ruby/2.6.0/gems/ffi-1.15.4/lib/ffi/tools/generator_task.rb
ory-client-0.0.1.alpha23 vendor/bundle/ruby/2.5.0/gems/ffi-1.15.4/lib/ffi/tools/generator_task.rb
vagrant-unbundled-2.2.18.0 vendor/bundle/ruby/3.0.0/gems/ffi-1.15.4/lib/ffi/tools/generator_task.rb
ory-kratos-client-0.8.0.alpha2 vendor/bundle/ruby/2.5.0/gems/ffi-1.15.4/lib/ffi/tools/generator_task.rb
ory-client-0.0.1.alpha21 vendor/bundle/ruby/2.5.0/gems/ffi-1.15.4/lib/ffi/tools/generator_task.rb
ory-keto-client-0.7.0.alpha1 vendor/bundle/ruby/2.5.0/gems/ffi-1.15.4/lib/ffi/tools/generator_task.rb
ory-keto-client-0.7.0.alpha0 vendor/bundle/ruby/2.5.0/gems/ffi-1.15.4/lib/ffi/tools/generator_task.rb