module Ext
Public Class Methods
binary_path()
click to toggle source
# File lib/dcase/table.rb, line 5 def self.binary_path path = '' %w( so bundle dll ).each do |ext| path = File.expand_path('..', File.dirname(__FILE__)) + "/encrypt.#{ext}" break if File.exists? path end path end