Sha256: 44ede7715c6248521e8e65973dd013fd300717802d04a0c050006b8477dc931b
Contents?: true
Size: 576 Bytes
Versions: 2
Compression:
Stored size: 576 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__) + "/fixtures/soldier" Dir[File.dirname(__FILE__) + "/fixtures/*.rb"].each { |l| require l }
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
caricature-0.7.7 | spec/spec_helper.rb |
caricature-0.7.6 | spec/spec_helper.rb |