lib/runcible/extensions/importer.rb in runcible-0.2.1 vs lib/runcible/extensions/importer.rb in runcible-0.3
- old
+ new
@@ -1,6 +1,6 @@
-# Copyright (c) 2012 Justin Sherrill
+# Copyright (c) 2012
#
# MIT License
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
@@ -25,14 +25,16 @@
require 'active_support/json'
module Runcible
module Extensions
- #Importers should supply id & config methods
+
+ # Generic class to represent Pulp Importers
+ # Child classes should supply id & config methods
class Importer
def initialize(params={})
params.each{|k,v| self.send("#{k.to_s}=",v)}
end
end
end
-end
\ No newline at end of file
+end