Sha256: 4021eae0d68ba784a12ab46005c10eab5db6aa612678bf3eeab3b8446679e3f6
Contents?: true
Size: 1.1 KB
Versions: 2
Compression:
Stored size: 1.1 KB
Contents
module Liberic class InitializationError < StandardError end extend self def eric_home ERIC_HOME end def library_path suffix = if RUBY_PLATFORM =~ /linux/ 'so' elsif RUBY_PLATFORM =~ /darwin/ 'dylib' else 'dll' end File.expand_path("libericapi.#{suffix}", ERIC_LIB_FOLDER) end ERIC_HOME = ENV['ERIC_HOME_40'] || raise(InitializationError.new('ERIC_HOME_40 environment variable not found (set it to the path to the ERiC libraries)')) ERIC_LIB_FOLDER = File.expand_path('lib', ERIC_HOME) def check_eric_version! version_response = Response::Version.new( Helpers::Invocation.with_result_buffer do |handle| SDK::API::version(handle) end ) eric_version = version_response.for_library('libericapi') if !SDK::Configuration::LIBERICAPI_VERSION.include?(eric_version) #raise InitializationError.new("ERiC #{SDK::Configuration::LIBERICAPI_VERSION.join(', ')} required, but #{eric_version} found.") warn "ERiC #{SDK::Configuration::LIBERICAPI_VERSION.join(', ')} required, but #{eric_version} found." end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
liberic-1.3.1 | lib/liberic/boot.rb |
liberic-1.3.0 | lib/liberic/boot.rb |