Skip to content
This repository has been archived by the owner on Aug 21, 2019. It is now read-only.

Latest commit

 

History

History
38 lines (22 loc) · 652 Bytes

README.rdoc

File metadata and controls

38 lines (22 loc) · 652 Bytes

noodle

Use bundler to pull in .NET dependencies.

Example usage

Create a gemfile like this:

source :rubygems
gem 'structuremap'

Create a rakefile like this:

require 'noodle'
Noodle::Rake::NoodleTask.new

Then run

bundle install
rake noodle

Your project will now have a lib directory with structuremap’s dll in it. Add a reference to said DLL in your .NET project.

Example without rakefile

Or, if you don’t want to use a Rakefile, try this:

bundle install
noodle

See also

See {Noodle::Rake::NoodleTask} for information on how to configure it.

Copyright © 2010 Matt Burke. See LICENSE for details.