<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -58,38 +58,6 @@ Gem::Specification.new do |s|
     &quot;lib/castronaut/support/sample.rb&quot;,
     &quot;lib/castronaut/ticket_result.rb&quot;,
     &quot;lib/castronaut/utilities/random_string.rb&quot;,
-    &quot;spec/app/controllers/application_spec.rb&quot;,
-    &quot;spec/app/controllers/db/cas.db&quot;,
-    &quot;spec/app/controllers/db/cas_adapter.db&quot;,
-    &quot;spec/app/controllers/log/castronaut.log&quot;,
-    &quot;spec/castronaut/adapters/development/adapter_spec.rb&quot;,
-    &quot;spec/castronaut/adapters/development/user_spec.rb&quot;,
-    &quot;spec/castronaut/adapters/ldap/adapter_spec.rb&quot;,
-    &quot;spec/castronaut/adapters/ldap/user_spec.rb&quot;,
-    &quot;spec/castronaut/adapters/restful_authentication/adapter_spec.rb&quot;,
-    &quot;spec/castronaut/adapters/restful_authentication/user_spec.rb&quot;,
-    &quot;spec/castronaut/adapters_spec.rb&quot;,
-    &quot;spec/castronaut/authentication_result_spec.rb&quot;,
-    &quot;spec/castronaut/configuration_spec.rb&quot;,
-    &quot;spec/castronaut/models/consumeable_spec.rb&quot;,
-    &quot;spec/castronaut/models/dispenser_spec.rb&quot;,
-    &quot;spec/castronaut/models/login_ticket_spec.rb&quot;,
-    &quot;spec/castronaut/models/proxy_granting_ticket_spec.rb&quot;,
-    &quot;spec/castronaut/models/proxy_ticket_spec.rb&quot;,
-    &quot;spec/castronaut/models/service_ticket_spec.rb&quot;,
-    &quot;spec/castronaut/models/ticket_granting_ticket_spec.rb&quot;,
-    &quot;spec/castronaut/presenters/login_spec.rb&quot;,
-    &quot;spec/castronaut/presenters/logout_spec.rb&quot;,
-    &quot;spec/castronaut/presenters/process_login_spec.rb&quot;,
-    &quot;spec/castronaut/presenters/proxy_validate_spec.rb&quot;,
-    &quot;spec/castronaut/presenters/service_validate_spec.rb&quot;,
-    &quot;spec/castronaut/ticket_result_spec.rb&quot;,
-    &quot;spec/castronaut/utilities/random_string_spec.rb&quot;,
-    &quot;spec/castronaut_spec.rb&quot;,
-    &quot;spec/spec.opts&quot;,
-    &quot;spec/spec_controller_helper.rb&quot;,
-    &quot;spec/spec_helper.rb&quot;,
-    &quot;spec/spec_rails_mocks.rb&quot;,
     &quot;vendor/activerecord/CHANGELOG&quot;,
     &quot;vendor/activerecord/README&quot;,
     &quot;vendor/activerecord/RUNNING_UNIT_TESTS&quot;,</diff>
      <filename>castronaut.gemspec</filename>
    </modified>
    <modified>
      <diff>@@ -32,7 +32,7 @@ describe Castronaut::Adapters::Development::User do
       
       it &quot;returns a Castronaut::AuthenticationResult object with the unable to authenticate user message&quot; do
         Castronaut::Adapters::Development::User.stub!(:find_by_login).and_return(nil)
-        Castronaut::Adapters::Development::User.authenticate('bob', '1234').error_message.should == &quot;Unable to authenticate the username bob&quot;
+        Castronaut::Adapters::Development::User.authenticate('bob', '1234').error_message.should == &quot;Unable to authenticate&quot;
       end
       
     end
@@ -43,7 +43,7 @@ describe Castronaut::Adapters::Development::User do
         
         it &quot;returns a Castronaut::AuthenticationResult object with the unable to authenticate user message&quot; do
           Castronaut::Adapters::Development::User.stub!(:find_by_login).and_return(stub(:crypted_password =&gt; &quot;a&quot;, :salt =&gt; &quot;b&quot;).as_null_object)
-          Castronaut::Adapters::Development::User.authenticate('bob', '1234').error_message.should == &quot;Unable to authenticate the username bob&quot;
+          Castronaut::Adapters::Development::User.authenticate('bob', '1234').error_message.should == &quot;Unable to authenticate&quot;
         end
         
       end</diff>
      <filename>spec/castronaut/adapters/development/user_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -17,7 +17,7 @@ describe Castronaut::Adapters::Ldap::User do
       connection.stub!(:authenticate).and_return(nil)
       connection.stub!(:bind).and_return(false)
       result = Castronaut::Adapters::Ldap::User.authenticate('cn=bob, dc=example, dc=com', 'bad_password')
-      result.error_message.should == &quot;Unable to authenticate the username cn=bob, dc=example, dc=com&quot;
+      result.error_message.should == &quot;Unable to authenticate&quot;
     end
   
   end</diff>
      <filename>spec/castronaut/adapters/ldap/user_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -75,7 +75,7 @@ describe Castronaut::Adapters::RestfulAuthentication::User do
       
       it &quot;returns a Castronaut::AuthenticationResult object with the unable to authenticate user message&quot; do
         Castronaut::Adapters::RestfulAuthentication::User.stub!(:find_by_login).and_return(nil)
-        Castronaut::Adapters::RestfulAuthentication::User.authenticate('bob', '1234').error_message.should == &quot;Unable to authenticate the username bob&quot;
+        Castronaut::Adapters::RestfulAuthentication::User.authenticate('bob', '1234').error_message.should == &quot;Unable to authenticate&quot;
       end
       
     end
@@ -86,7 +86,7 @@ describe Castronaut::Adapters::RestfulAuthentication::User do
         
         it &quot;returns a Castronaut::AuthenticationResult object with the unable to authenticate user message&quot; do
           Castronaut::Adapters::RestfulAuthentication::User.stub!(:find_by_login).and_return(stub(:crypted_password =&gt; &quot;a&quot;, :salt =&gt; &quot;b&quot;).as_null_object)
-          Castronaut::Adapters::RestfulAuthentication::User.authenticate('bob', '1234').error_message.should == &quot;Unable to authenticate the username bob&quot;
+          Castronaut::Adapters::RestfulAuthentication::User.authenticate('bob', '1234').error_message.should == &quot;Unable to authenticate&quot;
         end
         
       end</diff>
      <filename>spec/castronaut/adapters/restful_authentication/user_spec.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>4105f8feb8d705eb46a7b3560f610df100ddf550</id>
    </parent>
  </parents>
  <author>
    <name>Aaron Bedra</name>
    <email>aaron@thinkrelevance.com</email>
  </author>
  <url>http://github.com/relevance/castronaut/commit/146e74d5d3a5c55a8ff550554828a1a27097fc39</url>
  <id>146e74d5d3a5c55a8ff550554828a1a27097fc39</id>
  <committed-date>2009-05-22T08:07:51-07:00</committed-date>
  <authored-date>2009-05-22T08:07:51-07:00</authored-date>
  <message>fixing build</message>
  <tree>50773330bf8cd68273097e7f9220f97b47ad831c</tree>
  <committer>
    <name>Aaron Bedra</name>
    <email>aaron@thinkrelevance.com</email>
  </committer>
</commit>
