summaryrefslogtreecommitdiffstats
path: root/lib/puppet/rails/source_file.rb
blob: 3ccf87ac64ad81114b7c3073deeb0c2210556019 (plain)
1
2
3
4
5
6
7
8
class Puppet::Rails::SourceFile < ActiveRecord::Base
    has_one :host
    has_one :resource

    def to_label
      "#{self.filename}"
    end  
end