Parent

Methods

FeaturesTasks

Public Class Methods

titleize() click to toggle source
# File lib/features_tasks.rb, line 4
def self.titleize
  # all sites
  Site.all.each do |site|
    site.features.all.each_with_index do |feature, idx|
      new = feature.name.titleize
      if new != feature.name
        f = site.features.find(feature.id)
        f.update_attributes :name => new
      end
    end
  end
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.