All Projects → rifraf → IronRubyEmbeddedApps

rifraf / IronRubyEmbeddedApps

Licence: MIT license
This repository shows how to create 'standalone' .Net applications written in Ruby.

Programming Languages

ruby
36898 projects - #4 most used programming language
C#
18002 projects
HTML
75241 projects
CSS
56736 projects
javascript
184084 projects - #8 most used programming language
Haml
164 projects

IronRubyEmbeddedApps

(More detail on the Wiki pages)

This repository shows how to create standalone .Net applications written in Ruby.

You can package up Ruby applications as ordinary .Net executables without having to ship a collection of plain-text Ruby source files and the associated standard Ruby libraries.

If you want proof, look at the single file IRSinatra.exe which demonstrates a fully operational Sinatra example program. It needs no other files – you just need the IronRuby runtime DLLs to be available on the PC.

Your source Ruby files are embedded directly into your executable, and you can use require, load, File.open etc just as if the files were on disk.

No-one need ever know… (including your IT department).

Example:

  EmbeddedRuby er = new EmbeddedRuby();
  er.Mount("Applications");
  exitcode = er1.Run("main.rb");

How

To create an Embedded Ruby application, you just need the following components:

IronRuby

IronRuby is the Open Source version of Ruby for .Net

Serfs

Serfs is a “Simple Embedded Resource File System” for .Net. It provides access to files embedded in .Net assemblies. Files can be encoded for privacy.

IREmbeddedApp

IREmbeddedApp provides a wrapper for IronRuby and Serfs, and a bootstrapper that patches the appropriate Ruby methods so that they can read files from embedded resources.

Repository contents

This repository contains the following parts

  1. IREmbeddedApp : The core IREmbeddedApp dll.
  2. ExampleApps : An example command-line program showing how to run Ruby programs.
  3. IREmbeddedLibraries : A DLL containing a copy of the standard Ruby 1.8 libraries (including rubygems, rexml etc), plus rack-1.1.0 and sinatra-1.0. This can be optionally included in an application if you need library support.
  4. IRSinatra : A fully working Sinatra application with 2 flavours, one with libraries in individual DLLs, one with them all merged into the .exe
  5. IRTestResources : An example DLL containing no code, just embedded resources (optparse, test::unit and flexmock taken directly from an ordinary Ruby install).

License

Copyright © 2010 David Lake (rifraf → rifraf.net)

Released under the MIT license. See LICENSE file for details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].