Project

noodle

0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
Use bundler to get your .NET assembly dependencies.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 0

Runtime

>= 1.0.0.rc.3
>= 0
 Project Readme

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.