<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -6,7 +6,7 @@ class Zone &lt; ActiveResource::Base
   
   def self.create_for_domain(domain)
     $LOG.info &quot;&gt; domain record doesn't exist yet, creating&quot; if $LOG
-    zone = self.new(:origin =&gt; &quot;#{domain}.&quot;, :ttl =&gt; $TTL)
+    zone = self.new(:origin =&gt; &quot;#{domain}.&quot;)
     zone.save
     zone
   end</diff>
      <filename>lib/zone.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,6 @@
 Gem::Specification.new do |s|
   s.name = &quot;slicehost-dns&quot;
-  s.version = &quot;0.3.1&quot;
+  s.version = &quot;0.3.2&quot;
   s.date = &quot;2009-02-10&quot;
   s.summary = &quot;Manages DNS settings on your slicehost account via a YAML file&quot;
   s.email = &quot;matt@flowerpowered.com&quot;</diff>
      <filename>slicehost-dns.gemspec</filename>
    </modified>
    <modified>
      <diff>@@ -7,7 +7,7 @@ describe Reconciler do
   before do
     @ip = '1.1.1.1'
     @domain = 'example.com.'
-    @zone = Zone.new(:origin =&gt; @domain, :ttl =&gt; '5000', :id =&gt; '1')
+    @zone = Zone.new(:origin =&gt; @domain, :id =&gt; '1')
   end
   
   def reconciler
@@ -15,7 +15,7 @@ describe Reconciler do
   end
   
   def record(type, name, data, aux=0)
-    @zone.new_record(:record_type =&gt; type, :name =&gt; name, :data =&gt; data, :ttl =&gt; $TTL, :aux =&gt; aux)
+    @zone.new_record(:record_type =&gt; type, :name =&gt; name, :data =&gt; data :aux =&gt; aux)
   end
   
   describe &quot;A records&quot; do</diff>
      <filename>spec/reconciler_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -2,11 +2,6 @@ require File.dirname(__FILE__) + '/spec_helper.rb'
 require File.expand_path(File.dirname(__FILE__) + '/../lib/record')
 
 describe Record do
-  
-  it &quot;updates the ttl&quot; do
-    @record = Record.new(:ttl =&gt; nil)
-    @record.update_ttl!
-    @record.ttl.should == $TTL
-  end
+  # yes, this is pathetic. I know.
   
 end
\ No newline at end of file</diff>
      <filename>spec/record_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -13,8 +13,6 @@ require 'ruby-debug'
 
 Debugger.start
 
-$TTL = 40000
-
 class Zone &lt; ActiveResource::Base
   self.site = '/'
   def save</diff>
      <filename>spec/spec_helper.rb</filename>
    </modified>
    <modified>
      <diff>@@ -12,10 +12,6 @@ describe Zone do
       @zone.origin.should == 'example.com.'
     end
     
-    it &quot;sets the TTL&quot; do
-      @zone.ttl.should == $TTL
-    end
-    
     it &quot;saves the record&quot; do
       @zone.id.should == '12345'
     end
@@ -33,9 +29,4 @@ describe Zone do
     end
   end
   
-  describe &quot;updating the TTL&quot; do
-    @zone = Zone.new(:ttl =&gt; nil)
-    @zone.update_ttl!
-    @zone.ttl.should == $TTL
-  end
 end
\ No newline at end of file</diff>
      <filename>spec/zone_spec.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>84278f21a0f499a5b3f24ec0907551089542a228</id>
    </parent>
  </parents>
  <author>
    <name>Matt Lyon</name>
    <email>matt@flowerpowered.com</email>
  </author>
  <url>http://github.com/bleything/slicehost-dns/commit/66b79d7f9785f6357ea11166a7360f6ab49f06c9</url>
  <id>66b79d7f9785f6357ea11166a7360f6ab49f06c9</id>
  <committed-date>2009-02-28T12:59:19-08:00</committed-date>
  <authored-date>2009-02-28T12:59:19-08:00</authored-date>
  <message>removed all mentions of the TTL, slicehost sets this automatically and we don't get a say (thanks to David Bradford for bringing this to my attention)</message>
  <tree>17019fc68de27137a72338a06a781ad6ea77394f</tree>
  <committer>
    <name>Matt Lyon</name>
    <email>matt@flowerpowered.com</email>
  </committer>
</commit>
