<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -25,6 +25,8 @@ end
 
 Spec::Rake::SpecTask.new(:spec) do |s|
   s.spec_files = FileList[File.dirname(__FILE__) + '/spec/*_spec.rb']
+  s.verbose = true
+  s.spec_opts = [&quot;--color&quot;, &quot;--format specdoc&quot;, &quot;--diff&quot;]
 end
 
 desc 'Generate the gemspec to serve this Gem from Github'</diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -31,7 +31,6 @@ module Netflix
     #   redirect_to auth_url
     # end
     def acquire_request_token(callback_url, &amp;blk)
-      # assert that we can do this here...
       
       # populate oauth token
       # return token, secret
@@ -89,10 +88,7 @@ module Netflix
     def self.consumer_secret
       @consumer_secret
     end
-    
-
-
-      
+        
     # attr_accessor :access_token, :access_token_secret, :user_id
     # 
     # def initialize(access_token, access_token_secret, user_id)</diff>
      <filename>lib/netflix/client.rb</filename>
    </modified>
    <modified>
      <diff>@@ -9,7 +9,7 @@ Gem::Specification.new do |s|
   s.date = %q{2008-11-14}
   s.email = %q{rob.ares@gmail.com}
   s.extra_rdoc_files = [&quot;README.markdown&quot;]
-  s.files = [&quot;README.markdown&quot;, &quot;Rakefile&quot;, &quot;lib/netflix&quot;, &quot;lib/netflix/client.rb&quot;, &quot;lib/netflix/version.rb&quot;, &quot;lib/netflix.rb&quot;]
+  s.files = [&quot;README.markdown&quot;, &quot;Rakefile&quot;, &quot;lib/netflix&quot;, &quot;lib/netflix/client.rb&quot;, &quot;lib/netflix/user.rb&quot;, &quot;lib/netflix/version.rb&quot;, &quot;lib/netflix.rb&quot;]
   s.has_rdoc = true
   s.homepage = %q{http://www.robares.com}
   s.require_paths = [&quot;lib&quot;]</diff>
      <filename>netflix.gemspec</filename>
    </modified>
    <modified>
      <diff>@@ -1,56 +1,60 @@
 require File.dirname(__FILE__) + &quot;/spec_helper&quot;
 # require &quot;client&quot;
 # 
-# describe Netflix::Client, &quot;When initially created&quot; do
+# module Netflix
+# 
+#   describe Client, &quot;When initially created&quot; do
 #   
-#   before do               
+#     before do               
 #     
+#     end
+#   
+#     before(:each) do
+#     end
+#   
+#     it &quot;should define netflix OAuth endpoints&quot; do
+#       OAUTH_ENDPOINTS.class.should == Hash 
+#       OAUTH_ENDPOINTS.size.should == 3    
+#     end
+#   
+#     it &quot;should be createable&quot; do
+#       lambda {AssHat.new(&quot;&quot;, &quot;&quot;, &quot;&quot;)}.should_not == nil
+#     end
+#   
+#     it &quot;should throw an ArgumentError if nil initializer args are passed&quot; do
+#       lambda {AssHat.new(nil, nil, nil)}.should raise_error(ArgumentError)
+#     end
+#   
+#     it &quot;should respond to various accessors&quot; do
+#       client = AssHat.new(&quot;&quot;, &quot;&quot;, &quot;&quot;)
+#       client.should respond_to(:consumer_key)
+#       client.should respond_to(:consumer_secret) 
+#       client.should respond_to(:application_name)
+#       client.should respond_to(:api_version)           
+#     end
+#   
+#     it &quot;should default the api version&quot; do
+#       client = AssHat.new(&quot;&quot;, &quot;&quot;, &quot;&quot;)
+#       client.api_version.should == &quot;1.0&quot;  
+#     end
+#   
+#     it &quot;should respond to a #acquire_request_token instance method and yield 3 variables&quot; do
+#       client = AssHat.new(&quot;&quot;, &quot;&quot;, &quot;&quot;)
+#       client.should respond_to(:acquire_request_token)
+#     end
+#     it &quot;should respond to a #exchange_request_token_for_access_token instance method and yield 3 variables&quot; do
+#       client = AssHat.new(&quot;&quot;, &quot;&quot;, &quot;&quot;)
+#       client.should respond_to(:exchange_request_token_for_access_token)  
+#     end
+#   
+#     it &quot;should respond to a #from_access_token and yield nothing&quot; do
+#       client = AssHat.new(&quot;&quot;, &quot;&quot;, &quot;&quot;)
+#       client.should respond_to(:from_access_token)
+#     end
+#   
+#     it &quot;should raise NetflixClientError if no access token info is available when creating a new AccessTokenWrapper&quot; do
+#       lambda {Client.new(nil, nil).go(:get, &quot;/&quot;)}.should raise_error(NetflixClientError)
+#     end
 #   end
-#   
-#   before(:each) do
-#   end
-#   
-#   it &quot;should define netflix OAuth endpoints&quot; do
-#     Netflix::OAUTH_ENDPOINTS.class.should == Hash 
-#     Netflix::OAUTH_ENDPOINTS.size.should == 3    
-#   end
-#   
-#   it &quot;should be createable&quot; do
-#     lambda {Netflix::AssHat.new(&quot;&quot;, &quot;&quot;, &quot;&quot;)}.should_not == nil
-#   end
-#   
-#   it &quot;should throw an ArgumentError if nil initializer args are passed&quot; do
-#     lambda {Netflix::AssHat.new(nil, nil, nil)}.should raise_error(ArgumentError)
-#   end
-#   
-#   it &quot;should respond to various accessors&quot; do
-#     client = Netflix::Client.new(&quot;&quot;, &quot;&quot;, &quot;&quot;)
-#     client.should respond_to(:consumer_key)
-#     client.should respond_to(:consumer_secret) 
-#     client.should respond_to(:application_name)
-#     client.should respond_to(:api_version)           
-#   end
-#   
-#   it &quot;should default the api version&quot; do
-#     client = Netflix::Client.new(&quot;&quot;, &quot;&quot;, &quot;&quot;)
-#     client.api_version.should == &quot;1.0&quot;  
-#   end
-#   
-#   it &quot;should respond to a #acquire_request_token instance method and yield 3 variables&quot; do
-#     client = Netflix::Client.new(&quot;&quot;, &quot;&quot;, &quot;&quot;)
-#     client.should respond_to(:acquire_request_token)
-#   end
-#   it &quot;should respond to a #exchange_request_token_for_access_token instance method and yield 3 variables&quot; do
-#     client = Netflix::Client.new(&quot;&quot;, &quot;&quot;, &quot;&quot;)
-#     client.should respond_to(:exchange_request_token_for_access_token)  
-#   end
-#   
-#   it &quot;should respond to a #from_access_token and yield nothing&quot; do
-#     client = Netflix::Client.new(&quot;&quot;, &quot;&quot;, &quot;&quot;)
-#     client.should respond_to(:from_access_token)
-#   end
-#   
-#   it &quot;should raise NetflixClientError if no access token info is available when creating a new AccessTokenWrapper&quot; do
-#     lambda {Netflix::AccessTokenWrapper.new(nil, nil).go(:get, &quot;/&quot;)}.should raise_error(Netflix::NetflixClientError)
-#   end
-# end
+# 
+# end
\ No newline at end of file</diff>
      <filename>spec/netflix_spec.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>05b83e8dc2b975e2dc8dfe68aaeb9d25f23c422d</id>
    </parent>
  </parents>
  <author>
    <name>Rob Ares</name>
    <email>rob.ares@gmail.com</email>
  </author>
  <url>http://github.com/rares/netflix/commit/d299931d58bbba64868d5a72355ac36b2af545f0</url>
  <id>d299931d58bbba64868d5a72355ac36b2af545f0</id>
  <committed-date>2008-12-01T21:04:26-08:00</committed-date>
  <authored-date>2008-12-01T21:04:26-08:00</authored-date>
  <message>adding colored spec output. moving other specs into Netflix module so everything else is the same.</message>
  <tree>aab1a921863c1b7a3b129db0594d6cb811586df8</tree>
  <committer>
    <name>Rob Ares</name>
    <email>rob.ares@gmail.com</email>
  </committer>
</commit>
