<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -11,8 +11,11 @@ containing a tracker.yml file.
   gem install tpope-pickler --source=http://gems.github.com
   echo &quot;api_token: ...&quot;  &gt; ~/.tracker.yml
   echo &quot;project_id: ...&quot; &gt; ~/my/app/features/tracker.yml
+  echo &quot;ssl: [true|false]&quot; &gt;&gt; ~/my/app/features/tracker.yml
   pickler --help
 
+&quot;ssl&quot; defaults to false if not configured in the yml file.
+
 For details about the Pivotal Tracker API, including where to find your API
 token and project id, see http://www.pivotaltracker.com/help/api .
 </diff>
      <filename>README.rdoc</filename>
    </modified>
    <modified>
      <diff>@@ -101,7 +101,8 @@ class Pickler
       unless id = project_id
         raise Error, 'echo project_id: ... &gt; features/tracker.yml'
       end
-      Tracker.new(token).project(id)
+      ssl = config['ssl']
+      Tracker.new(token, ssl).project(id)
     end
   end
 </diff>
      <filename>lib/pickler.rb</filename>
    </modified>
    <modified>
      <diff>@@ -11,16 +11,28 @@ class Pickler
 
     attr_reader :token
 
-    def initialize(token)
+    def initialize(token, ssl = false)
       require 'active_support/core_ext/blank'
       require 'active_support/core_ext/hash'
       @token = token
+      @ssl = ssl
+    end
+
+    def ssl?
+      @ssl
     end
 
     def http
       unless @http
-        require 'net/http'
-        @http = Net::HTTP.new(ADDRESS)
+        if ssl?
+          require 'net/https'
+          @http = Net::HTTP.new(ADDRESS, Net::HTTP.https_default_port)
+          @http.verify_mode = OpenSSL::SSL::VERIFY_NONE
+          @http.use_ssl = true
+        else
+          require 'net/http'
+          @http = Net::HTTP.new(ADDRESS)
+        end
       end
       @http
     end</diff>
      <filename>lib/pickler/tracker.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>f9611bf167f22805c6658ded522978b09042279c</id>
    </parent>
  </parents>
  <author>
    <name>Tim Pope</name>
    <email>code@tpope.net</email>
  </author>
  <url>http://github.com/tpope/pickler/commit/b1f7f174647b519606aeec63c2adf1e54e075c91</url>
  <id>b1f7f174647b519606aeec63c2adf1e54e075c91</id>
  <committed-date>2009-01-06T07:33:56-08:00</committed-date>
  <authored-date>2009-01-06T06:43:05-08:00</authored-date>
  <message>SSL support [Liam Morley]</message>
  <tree>2d5a65ac6c4960460f3f8f1f4b3903c3c75e605d</tree>
  <committer>
    <name>Tim Pope</name>
    <email>code@tpope.net</email>
  </committer>
</commit>
