# File ext/libv8/paths.rb, line 16 def config RbConfig::MAKEFILE_CONFIG end
# File ext/libv8/paths.rb, line 8 def include_paths ["#{vendored_source_path}/include"] end
# File ext/libv8/paths.rb, line 20 def libv8_object(name) filename = "#{libv8_profile}/libv8_#{name}.#{config['LIBEXT']}" unless File.exists? filename filename = "#{libv8_profile}/obj.target/tools/gyp/libv8_#{name}.#{config['LIBEXT']}" end return filename end
# File ext/libv8/paths.rb, line 28 def libv8_profile base = "#{vendored_source_path}/out/#{Libv8::Arch.libv8_arch}" debug = "#{base}.debug" File.exists?(debug) ? debug : "#{base}.release" end
Generated with the Darkfish Rdoc Generator 2.