Sha256: 8b3daca2ad3895a267d49ea78bfe12b113d625d8e3dd83ecf90d56b9ece5ed24

Contents?: true

Size: 508 Bytes

Versions: 1

Compression:

Stored size: 508 Bytes

Contents

# add some search paths to ironruby
# this first one adds the path with the assemblies
# this enables us not to have to specify a path to the assemblies everywhere.
$: << File.dirname(__FILE__) + "/bin"
# adds the path to the caricature library.
$: << File.dirname(__FILE__) + "/../lib"

# load the caricature library
require "caricature"

# load the assembly with the C# code
require 'ClrModels.dll' if defined? IRONRUBY_VERSION

# Load the ruby models
require File.dirname(__FILE__) + "/models/ruby_models"

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
caricature-0.7.2 spec/spec_helper.rb