summaryrefslogtreecommitdiffstats
path: root/lib/puppet/rails/source_file.rb
blob: 02557ffca21d8d3b314f751fd2b9b7dc6731f427 (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