IronRuby

MonoでIronRuby

Ubuntu 10.04 Mono 2.8.1 IronRuby 1.1.1 UbuntuへのMonoのインストールはこれで簡単にできた。感謝! window.twttr = (function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0], t = window.twttr || {}; if (d.getElementById(id)) return t; js…

C#もIronRubyのRSpecでテストしちゃおうぜ

またしてもIronRubyネタ。テストコードは納品するわけじゃないし、そもそも自分以外は誰もテストコード書いてくれないので(泣)、まぁNUnitもいいんだけど、RSpecならきっともっと楽ちんに違いないっていう流れ。まずいい加減にこんな感じで配置してみた。 RS…

IronRubyとC#で塗り絵を作る

我が家のお嬢様が塗り絵ブームらしいのだが、市販のはあまり好みのがないようで、「へば作ればいんじゃね?」と気づいたので試しにやってみることにした。 window.twttr = (function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0], t = window.tw…

IronRubyでSinatra動くかい?

C:\>igem i sinatra --no-ri --no-rdoc Successfully installed rack-1.1.0 Successfully installed sinatra-1.0 2 gems installed C:\>igem li *** LOCAL GEMS *** rack (1.1.0) sinatra (1.0) C:\>type app.rb require 'rubygems' require 'sinatra' get '…

IronRubyでもWPFといったらXAMLだよね

C:\>ir IronRuby 1.0.0.0 on .NET 4.0.30319.1 Copyright (c) Microsoft Corporation. All rights reserved. >>> require 'PresentationFramework' => true >>> include System::Windows => Object >>> include System::Windows::Markup => Object >>> xaml …

IronRubyでWPF

お試しで。 C:\>ir IronRuby 1.0.0.0 on .NET 4.0.30319.1 Copyright (c) Microsoft Corporation. All rights reserved. >>> require 'PresentationFramework' => true >>> include System::Windows => Object >>> include System::Windows::Controls => Obj…

IronRubyでWindows Forms

遅まきながら。 C:\>ir IronRuby 1.0.0.0 on .NET 4.0.30319.1 Copyright (c) Microsoft Corporation. All rights reserved. >>> require 'System.Windows.Forms' => true >>> include System::Windows::Forms => Object >>> f = Form.new => System.Windows…