<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -81,6 +81,8 @@ module Moo
   end
   
   class Postcard &lt; Design
+    disable_attributes [:font_size, :italic]
+
     def product_type
       &quot;postcard&quot;
     end</diff>
      <filename>lib/design.rb</filename>
    </modified>
    <modified>
      <diff>@@ -68,10 +68,17 @@ describe &quot;a postcard&quot; do
   before(:each) do
     @design = Moo::Postcard.new(:url =&gt; &quot;&quot;)
   end
-
   
   it &quot;should have postcard as the type&quot; do
     @design.product_type.should == &quot;postcard&quot;
   end
   
+  it &quot;should not support size&quot; do
+    lambda{@design.font_size = 0.5}.should raise_error(Moo::DisabledAttributeError)
+  end
+  
+  it &quot;should not support italic&quot; do
+    lambda{@design.italic = true}.should raise_error(Moo::DisabledAttributeError)
+  end
+  
 end
\ No newline at end of file</diff>
      <filename>spec/design_spec.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>9b40f1ea3bc6a87526727a12c27739e89975eebd</id>
    </parent>
  </parents>
  <author>
    <name>Tom Armitage</name>
    <email>tom@infovore.org</email>
  </author>
  <url>http://github.com/infovore/ruminant/commit/a2dec5d5f97ac035d92ce7ae08124691686baef2</url>
  <id>a2dec5d5f97ac035d92ce7ae08124691686baef2</id>
  <committed-date>2008-10-01T12:00:47-07:00</committed-date>
  <authored-date>2008-10-01T12:00:47-07:00</authored-date>
  <message>Removing italic and size for postcard.</message>
  <tree>0cc25c44aee5e3a437b248e57d704706f7c0aea8</tree>
  <committer>
    <name>Tom Armitage</name>
    <email>tom@infovore.org</email>
  </committer>
</commit>
