By tag: Ruby.
0
kicks
Java, JavaScript and Ruby providers for Raygun.io
Raygun.io, the cloud based error service that automatically records, tracks and reports on software errors now has support for JavaScript, Java, Cold Fusion and Ruby. This adds to the existing support for .NET, WinRT and PHP. The REST API is also documented to make it easier for others to create pro...
0
kicks
C# alternative for Ruby’s acts_as_tree; part 2
Second part in a two part blog post series about my search for a C# alternative for Ruby's acts_as_tree plugin. I'll talk about mixins, extension methods and marker interfaces in C#, and I will show how methods for tree traversal can be added to existing entity classes.
0
kicks
Adventures in Ruby MVVM – Firing Events from Ruby
My Experiment:
Can I move over to Ruby as my primary programming language when developing WPF and Silverlight applications?
In this post, I talk about how to fire events from Ruby, including an implementation of INotifyPropertyChanged
0
kicks
OMG, Better Rake (for .net)!
If you ask me, when it comes tools for writing automated build scripts nothing packs more bang for the buck than Rake. Until recently, using Rake to build .net solutions required a magic concoction of hacked together scripts which rarely exhibited Ruby’s appreciation for beauty nor Rake’s spirit of ...
0
kicks
C# Recorder using IronRuby
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 ob...
0
kicks
Collection Of Puzzles For Programmers
A nice collection of puzzles. Some are harder than others so there is something for everyone. You can choose any language you want, you will see that there are solutions in C#, Ruby, Python, Visual Basic, SQL, JavaScript, C++ and other languages.
0
kicks
Ruby inspired C# Extension Methods for natural DateTime operations
FluentDateTime is a open source library of Ruby inspired C# Extension Methods for easier and more natural DateTime handling and operations in .NET that allows you to write code like this:
DateTime.Now + 1.Week() + 3.Days + 14.Minutes();
3.Days().Ago();
5.Days().After(new DateTime(2000, 1, 1));
D...
0
kicks
Created a basic integration for IronRuby and Asp.NET MVC
Ivan started to work on an integration to allow writing ASP.NET MVC controllers in Ruby... sweet!!
0
kicks
Getting Started With IronRuby And RSpec, Part 1
An introduction to IronRuby and the RSpec BDD framework
0
kicks
Embedding an IronRuby console in your applications
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.
0
kicks
Ruby In Steel - New Free Edition includes Visual Studio
SapphireSteel Software today released a free edition of Ruby In Steel, the Ruby and Rails IDE for Microsoft Visual Studio 2008.
0
kicks
Learning Ruby via IronRuby and C# Part 6
In part 6 we look at Hashes (or Associative Arrays) and how they are used in the Ruby language. We also look at how you can use them in place of explicit method parameters.
0
kicks
Learning Ruby via IronRuby and C# Part 5
In part 5 of the IronRuby versus C# series, we talk about Arrays in Ruby and how they are a different beast from what we are used to in C#.