-
Install ASP.NET MVC (link?)
-
Create a new ASP.NET MVC project in Visual Studio
-
Add a reference to System.Web.Mvc.IronRuby.dll
-
Open Global.asax.cs and ...
// add this to your usings using System.Web.Mvc;
// make the subclass of "MvcApplication" be "RubyMvcApplication" namespace MyIronRubyMvcApp { public class MvcApplication : RubyMvcApplication {
}
}
-
Create Routes.rb and define a default route:
$routes.ignore_route "{resource}.axd/{*pathInfo}" $routes.map_route "default", "{controller}/{action}/{id}", :controller => 'Home', :action => 'index', :id => ''
Ruby Controllers live in the same directory as normal MVC controllers: the "Controllers" directory.
class HomeController < Controller def index "Hello, World" end end
Run the application from Visual Studio, and it will display "Hello, World"
You can create filters in a number of ways.
class YourController < Controller
# before_action, after_action, around_action, before_result, after_result, authorized_action, exception_action all work
before_action :index do |context|
# do some filtering stuff here
end
around_result :index do |context|
# do some result filtering stuff here
end
before_action :index, :method_filter
authorized_action :some_other_action do |context|
# do some authorization checking work here
end
filter :index, YourFilter
filter :some_other_action, DifferentYourFilter
# executes for each action
filter YourControllerFilter
def index
# index action
end
def some_other_action
# index action
end
def method_filter
# do some filter stuff here
end
end
You can define the following types of filters: ActionFilter, ResultFilter, AuthorizationFilter, ExceptionFilter
class YourFilter < ActionFilter
def on_action_executing(context)
# Do some filter work here
end
def on_action_executed(context)
# Do some filter work here
end
end
Ruby views exist in the Views directory, in a sub-folder with the same name as the Controller the View is intended to be used in. To use ERb views, the file should have the ".html.erb" extension. Shared views, such as layouts, are in the "Views/Shared" directory.
For example, an "index" view for the HomeController would be in Views/Home/index.html.erb.
class HomeController < Controller def index data = "Hello, World" view 'index', 'layout', data end end
MVC says: <%= model %>
IronRubyMvc.Test - Tests Library. IronRubyMvcWeb - "Hello, World" test website. You need to change the connection string and attach the database or use sql express. Pictures - "Real" Demo application
Running IronRubyMvcWeb:
- Start cassini against the website
Running Pictures:
- Start cassini against Pictures
- ruby Pictures\server\app.rb