Stories recently tagged with 'IronRuby'

Silverlight: Embed IronRuby/DLR Scripting within XAML using IValueConv(pietschsoft.com)

submitted by crpietschmanncrpietschmann(11.3k) 1 year, 7 months ago

After I wrote the “Intro to IronRuby/DLR Scripting in C# Silverlight 4 Application” post, I came across an interesting series on embedding DLR scripts in XAML with WPF. This is an interesting series, although the code doesn’t run in Silverlight, due to the fact that Silverlight is only a subset of WPF and doesn’t support the System.Windows.Markup.MarkupExtension class. I test out a couple things in Silverlight, and I was able to get similar DLR scripting functionality working under Silverlight using a combination of a simple, custom IValueConverter and a custom UserControl class. read more...

add a comment |category: |Views: 16

tags: another

Intro to IronRuby/DLR Scripting in C# Silverlight 4 Application(pietschsoft.com)

submitted by crpietschmanncrpietschmann(11.3k) 1 year, 7 months ago

I thought I’d share what I’m learning about adding IronRuby scripting to Silverlight 4 applications. I’m also focusing on C# as the host language, but the .NET object and methods used will be the same from VB.NET. read more...

add a comment |category: |Views: 18

tags: another

Embedding DLR Scripts in XAML- Part 2, A Simple DLR Markup Extension(www.thinkbottomup.com.au)

submitted by crpietschmanncrpietschmann(11.3k) 1 year, 7 months ago

This article demonstrates how to embed DLR scripts in XAML using a custom MarkupExtension. The scripting language can be any language supported by the DLR, such as Python or Ruby. read more...

add a comment |category: |Views: 20

tags: another

Say Goodbye to NAnt and MSBuild With IronRuby(www.codethinked.com)

submitted by justin_etheredgejustin_etheredge(8539) 2 years, 1 month ago

Tired of writing tons of XML in order to create automated .NET builds? Well, look no further... IronRuby, Rake, and Albacore are here to rescue you! read more...

add a comment |category: |Views: 651

tags: another

C# Recorder using IronRuby(ironshay.com)

submitted by shayfriedmanshayfriedman(1411) 2 years, 7 months ago

The Ruby languages has some very powerful built-in abilities. These are now available in C# 4.0 thanks to the dynamic keyword and IronRuby. In this post I take advantage of some of the powerful Ruby built-in abilities to create a class that records C# statements and playbacks them on an arbitrary object - a task that has been very complicated to achieve until now. read more...

add a comment |category: |Views: 291

tags: another

What do we need to use IronRuby?(suhinini.blogspot.com)

submitted by AldanAldan(50) 2 years, 8 months ago

Blog post about requirements to using IronRuby at existing .NET project. read more...

add a comment |category: |Views: 9

tags: another

Specification Testing in .NET using Ruby(xerxesb.com)

submitted by xerxesbxerxesb(60) 3 years, 1 month ago

The purpose of this post is to run through a process which will ultimately allow you to write Ruby based specifications for your .NET code. Why would you want to do this? The intended purpose for this practice is to gain the most benefit when doing BDD. Trying to do BDD in C# results in a lot of syntactical noise in the code which distracts from the goal of having clear, readable specifcations of how the intended function should behave. The advantage of using Ruby is that the scripted nature of the language allows physical (as well as logical) separation of speficiations from code, opening up the realm of possibility that specifications are written by non-technical folk. Furthermore, the Ruby syntax lends itself to building DSLs perfect for the purpose of allowing clean, almost human-readable code. read more...

add a comment |category: |Views: 21

tags: another

Getting Started With IronRuby And RSpec, Part 1(msdn.microsoft.com)

submitted by gavinjoycegavinjoyce(25.7k) 3 years, 3 months ago

An introduction to IronRuby and the RSpec BDD framework read more...

add a comment |category: |Views: 127

tags: another

Make Your Application Extendable Using the DLR(blogs.microsoft.co.il)

submitted by shayfriedmanshayfriedman(1411) 3 years, 3 months ago

Application extensibility comes in various ways and names. It seems, though, that one kind of extensibility was left to the very few – application macros. This kind is now easier to achieve than ever before, using the new Dynamic Language Runtime. read more...

add a comment |category: |Views: 26

tags: another

Getting Started with Dynamic Languages(blogs.microsoft.co.il)

submitted by shayfriedmanshayfriedman(1411) 3 years, 5 months ago

I've grouped together some resources and blogs for all of you out there who are willing to start working with dynamic languages that are built on top of the DLR. Enjoy! read more...

add a comment |category: |Views: 14

tags: another

Running IRake(suhinini.blogspot.com)

submitted by AldanAldan(50) 3 years, 5 months ago

A step-by-step introduction to IRake from IronRuby Alpha2 read more...

add a comment |category: |Views: 23

tags: another

Combining The Powers of .Net and IronRuby(blogs.microsoft.co.il)

submitted by shayfriedmanshayfriedman(1411) 3 years, 5 months ago

An explanation of the great things you can do when you combine the powers of .Net and dynamic languages. read more...

add a comment |category: |Views: 10

tags: another

Embedding an IronRuby console in your applications(blog.brechtel.us)

submitted by jbrechteljbrechtel(40) 3 years, 6 months ago

How to make use of IronRuby today. Along the same lines as parts of John Lam's IronRuby PDC talk. How to use IronRuby in your applications as an interactive console. read more...

add a comment |category: |Views: 69

tags: another

Using IronRuby To Implement Dynamic Business Rules(codethinked.com)

submitted by justin_etheredgejustin_etheredge(8539) 3 years, 7 months ago

A quick look at how to use IronRuby and the Microsoft.Scripting namespace in order to dynamically load and run business Rules against domain objects written in C#. read more...

add a comment |category: |Views: 91

tags: another

Improve your C# with IronRuby(codethinked.com)

submitted by justin_etheredgejustin_etheredge(8539) 3 years, 8 months ago

Go get the IronRuby source and look at all the wonderful library code that the IronRuby developers have written for you! read more...

add a comment |category: |Views: 37

tags: another

Learning Ruby via IronRuby and C# Part 7(codethinked.com)

submitted by justin_etheredgejustin_etheredge(8539) 3 years, 9 months ago

In this post we talk about one of the best features of Ruby... duck typing. We show you what it is, and how it affects the way that you interact with objects in Ruby. read more...

add a comment |category: |Views: 110

tags: another