<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -3,28 +3,28 @@ require 'ronin/extensions/kernel'
 require 'spec_helper'
 
 describe Kernel do
-  it &quot;should provide Kernel#try&quot; do
-    Kernel.respond_to?('try').should == true
+  it &quot;should provide Kernel#attempt&quot; do
+    Kernel.respond_to?('attempt').should == true
   end
 
-  describe &quot;try&quot; do
+  describe &quot;attempt&quot; do
     it &quot;should return the result of the block if nothing is raised&quot; do
-      try { 2 + 2 }.should == 4
+      attempt { 2 + 2 }.should == 4
     end
 
     it &quot;should return nil if an exception is raised&quot; do
-      try { 2 + 'a' }.should be_nil
+      attempt { 2 + 'a' }.should be_nil
     end
 
     it &quot;should rescue RuntimeError exceptions&quot; do
       lambda {
-        try { raise(RuntimeError,&quot;something happened&quot;,caller) }
+        attempt { raise(RuntimeError,&quot;something happened&quot;,caller) }
       }.should_not raise_error(RuntimeError)
     end
 
     it &quot;should rescue StandardError exceptions&quot; do
       lambda {
-        try { raise(StandardError,&quot;not allowed to do that&quot;,caller) }
+        attempt { raise(StandardError,&quot;not allowed to do that&quot;,caller) }
       }.should_not raise_error(StandardError)
     end
   end</diff>
      <filename>spec/extensions/kernel_spec.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>d44409f7a00b7926fcf60e80f9f701aa65372f84</id>
    </parent>
  </parents>
  <author>
    <name>postmodern</name>
    <email>postmodern.mod3@gmail.com</email>
  </author>
  <url>http://github.com/postmodern/ronin/commit/7eaef5d45e4e04ed8d9c871ebf99a27f8434c5e6</url>
  <id>7eaef5d45e4e04ed8d9c871ebf99a27f8434c5e6</id>
  <committed-date>2009-07-02T13:50:06-07:00</committed-date>
  <authored-date>2009-07-02T13:50:06-07:00</authored-date>
  <message>Fixed old specs.

* try was renamed to attempt.</message>
  <tree>1f38d3144c64ac283513daf48d092e5949cb2489</tree>
  <committer>
    <name>postmodern</name>
    <email>postmodern.mod3@gmail.com</email>
  </committer>
</commit>
