-
Recent Posts
Recent Comments
- rssvihla on An Evernote backed Journal using Vim/Emacs
- ap on An Evernote backed Journal using Vim/Emacs
- www.techies.co.nz on An Evernote backed Journal using Vim/Emacs
- agilejoe on An Evernote backed Journal using Vim/Emacs
- Sean Kenny on Ruth’s Story
Archives
Categories
- ActiveRecord
- Agile
- alt.net
- Anti-Patterns
- AppDomain
- Authkit
- BDD
- Boo
- Brownfield
- C#
- Castle
- CI
- Context
- Craftsmanship
- DotNet
- DSL
- Dynamic Langs
- EC2
- Evernote
- Functional
- GHC
- Haskell
- Hate
- Hudson
- IoC
- IronPython
- Ivy
- Java
- Lean
- Learning
- Mako
- Maven
- Monorail
- MSBuild
- MySQL
- NHibernate
- ORM
- Pylons
- Python
- Rails
- SOLID
- Spec
- SpecMaker
- Spring
- SqlAlchemy
- StructureMap
- TDD
- Uncategorized
- VAN
- Vim
Meta
Category Archives: Monorail
MonoRail screencasts
If you want a great into to MonoRail, check out Colin’s screencasts. I will possibly be re-writing my validation post. Post Footer automatically generated by Add Post Footer Plugin for wordpress.
Comments Off
MonoRail #4: Validation
This post was decided upon after watching Hammet‘s screencast on using attribute-based validation in MonoRail. *NOTE: I do not agree with embedding validation into the domain model. I would prefer a service handle this, but I’m utilizing the validation that … Continue reading
MonoRail HotSwap
Ayende (pronounced A-yend (no eh at the end) – verified in this post after hearing Colin pronounce it) posted on an idea he has – MonoRail HotSwap and Colin Ramsay did a screencast of MonoRail HotSwap. I know that the … Continue reading
NBehave Experiment: MonoRail Controllers & Rhino Mocks
…whoever keeps His word, truly the love of God is perfected in him. By this we know that we are in Him. — 1 John 2:5 Well I decided it was finally time I took a look at NBehave as … Continue reading
Monorail #3 : Unit Testing and ViewComponents
UNIT TESTING After the past 2 1/2 posts I’ve migrated my unit tests to use the BaseControllerTest abstract class that originated from the Eleutian guys, but is now a part of the Castle MonoRail trunk download.Here is my ExampleControllerTests class: … Continue reading
Comments Off
Another Quick Tip: Asserting view renders in a MonoRail controller test
This is another one of those “blog it so I can remember it” posts. My last post about a similar tip was relating to asserting redirects in a MonoRail controller. This one deals with asserting which view is being rendered in your … Continue reading
Also posted in Functional, GHC, Haskell, Learning
Comments Off
Building the often needed anti-corruption layer
The fear of the LORD is the beginning of knowledge, But fools despise wisdom and instruction. — Proverbs 1:7 “Agile Joe” and I were chatting about the challenges of building on top of existing application platforms, specifically ones like Microsoft … Continue reading
Also posted in Learning
Comments Off
Monorail #0: Controllers
One of the first things I should have posted: How It Works This image is good for all you visual learners out there: (from the Castle Project documentation) This will help us when we go to the next post on … Continue reading
Comments Off
Monorail #2 : Layouts & Rescues
LAYOUTS UPDATED: Used the Code Snippet plug-in Layouts are like master pages or template pages in Adobe DreamWeaver. They allow you to template your site. I have a default.vm under my ../Views/layouts folder and the way to make a controller … Continue reading
Quick Tip: Asserting response redirects in a MonoRail controller test
Reading this post by Sean reminded me of when I first started using the trunk’s BaseControllerTest. One nifty little property on the base test controller’s mock Response object is RedirectedTo. So you can do something like this: 1: // some … Continue reading
