lib/puppet-herald/models/log-entry.rb in puppet-herald-0.1.1 vs lib/puppet-herald/models/log-entry.rb in puppet-herald-0.2.0

- old
+ new

@@ -1,3 +1,10 @@ -class LogEntry < ActiveRecord::Base - belongs_to :report -end \ No newline at end of file +# A module for Herald +module PuppetHerald + # module for models + module Models + # A log entry model + class LogEntry < ActiveRecord::Base + belongs_to :report + end + end +end