Well you can require activesupport Or you can look at Inflector.NET from Andrew Peters. He ported that inflection stuff from activesupport to .NET
On Wed, Mar 4, 2009 at 10:36 AM, Thibaut Barrère <[email protected]>wrote: > Hi, > > looking if I can use the internals better: is there a built-in > IronRuby way to convert "flow_layout_panel" to "FlowLayoutPanel" ? As > it's used all over the place when calling methods, I thought that > maybe I could use it as well. > > I'm currently using this which works well: > > module Classifier > def classify(string) > string.gsub(/(^|_)(.)/) { $2.upcase } # simplified version of > Rails inflector > end > end > > If I can remove some code though, I'm happy. Is the code to achieve > this accessible ? > > -- Thibaut > _______________________________________________ > Ironruby-core mailing list > [email protected] > http://rubyforge.org/mailman/listinfo/ironruby-core >
_______________________________________________ Ironruby-core mailing list [email protected] http://rubyforge.org/mailman/listinfo/ironruby-core
