summaryrefslogtreecommitdiffstats
path: root/lib/puppet/rails/param_name.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/puppet/rails/param_name.rb')
-rw-r--r--lib/puppet/rails/param_name.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/puppet/rails/param_name.rb b/lib/puppet/rails/param_name.rb
deleted file mode 100644
index 928838f5c..000000000
--- a/lib/puppet/rails/param_name.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-class Puppet::Rails::ParamName < ActiveRecord::Base
- has_many :param_values
- belongs_to :resources
-
- def to_resourceparam(source)
- hash = {}
- hash[:name] = self.name.to_sym
- hash[:source] = source
- hash[:value] = self.param_values.find(:first).value
- Puppet::Parser::Resource::Param.new hash
- end
-end
-