summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authormo k <m@mokhan.ca>2011-11-12 09:45:15 -0700
committermo k <m@mokhan.ca>2011-11-12 09:45:15 -0700
commit053247ee4bf2131be768ac87a01644435b2a263f (patch)
tree937f6bf8efa6b7e0332f1dcdf4ae4b88c3691956 /lib
parentce1ba7b763880671510d469b2810b3fc4c0e907e (diff)
move publisher to a separate file.
Diffstat (limited to 'lib')
-rw-r--r--lib/publisher.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/publisher.rb b/lib/publisher.rb
new file mode 100644
index 0000000..6bd06aa
--- /dev/null
+++ b/lib/publisher.rb
@@ -0,0 +1,5 @@
+class Publisher
+ def initialize(name)
+ @name = name
+ end
+end