- Introduction to JRuby at the university,
- JRuby on Rails at the conference,
- Birds-of-a-Feather (BOF) session on JRuby,
- A quicky on ActiveHibernate.
And, while on the topic of ActiveHibernate, I have added support for lazy loading of entities and support for Hibernate components (aka aggregation in Rails):
class Address
attr_accessor :street
attr_accessor :city
end
class Person
include Hibernate
primary_key_accessor :id, :long
h_component :address,[[:street,:string],[:city,:string]]
end
I'll use the time that's left before JavaPolis to polish (i.e., clean up and extend the tests) the functionality that is in there today.
Anyway, I'm looking forward to meeting the JRuby team in Antwerp.