Index: spec/frozen/library/base64/decode_b_spec.rb
===================================================================
--- spec/frozen/library/base64/decode_b_spec.rb	(revision 2214)
+++ spec/frozen/library/base64/decode_b_spec.rb	(working copy)
@@ -2,16 +2,18 @@
 
 require 'base64'
 
-describe "Base64#decode_b" do
-  it "supports an encoding type of base64 and the charachter set SHIFT_JIS" do
-    Base64.decode_b("=?SHIFT_JIS?B?Zm9v?=").should == 'foo'
+ruby_version_is ""..."1.9" do
+  describe "Base64#decode_b" do
+    it "supports an encoding type of base64 and the charachter set SHIFT_JIS" do
+      Base64.decode_b("=?SHIFT_JIS?B?Zm9v?=").should == 'foo'
+    end
+    
+    it "supports an encoding type of base64 and the character set ISO-2022-JP" do
+      Base64.decode_b("=?ISO-2022-JP?B?Zm9v?=").should == 'foo'
+    end
+    
+    # mSpec doesn't have pending specs yet
+    # Waiting on Kconv implementation
+    # it "decodes MIME encoded string and convert halfwidth katakana to fullwidth katakana."
   end
-  
-  it "supports an encoding type of base64 and the character set ISO-2022-JP" do
-    Base64.decode_b("=?ISO-2022-JP?B?Zm9v?=").should == 'foo'
-  end
-  
-  # mSpec doesn't have pending specs yet
-  # Waiting on Kconv implementation
-  # it "decodes MIME encoded string and convert halfwidth katakana to fullwidth katakana."
-end
\ No newline at end of file
+end
Index: spec/frozen/library/base64/b64encode_spec.rb
===================================================================
--- spec/frozen/library/base64/b64encode_spec.rb	(revision 2214)
+++ spec/frozen/library/base64/b64encode_spec.rb	(working copy)
@@ -2,33 +2,35 @@
 
 require 'base64'
 
-describe "Base64#b64encode" do
-  it "returns the Base64-encoded version of the given string with a newline at 60 characters" do
-    b64encoded_version = "Tm93IGlzIHRoZSB0aW1lIGZvciBhbGwgZ29vZCBjb2RlcnMgdG8gbGVhcm4g\nUnVieQ==\n"
-    lambda {
-      Base64.b64encode("Now is the time for all good coders to learn Ruby").should == b64encoded_version
-    }.should output
+ruby_version_is ""..."1.9" do 
+  describe "Base64#b64encode" do
+    it "returns the Base64-encoded version of the given string with a newline at 60 characters" do
+      b64encoded_version = "Tm93IGlzIHRoZSB0aW1lIGZvciBhbGwgZ29vZCBjb2RlcnMgdG8gbGVhcm4g\nUnVieQ==\n"
+      lambda {
+        Base64.b64encode("Now is the time for all good coders to learn Ruby").should == b64encoded_version
+      }.should output
+    end
+    
+    it "prints the Base64-encoded version of the given string with a newline after 60 characters" do
+      b64encoded_version ="Tm93IGlzIHRoZSB0aW1lIGZvciBhbGwgZ29vZCBjb2RlcnMgdG8gbGVhcm4g\nUnVieQ==\n"
+      lambda {
+        Base64.b64encode("Now is the time for all good coders to learn Ruby")
+      }.should output(b64encoded_version)
+    end
   end
+
+  describe "Base64#b64encode with length" do
+    it "returns the Base64-encoded version of the given string with a newline at 60 characters" do
+      b64encoded_version = "Tm93IGlzIHRoZSB0aW1lIGZvciBhbGwgZ29vZCBjb2RlcnMgdG8gbGVhcm4g\nUnVieQ==\n"
+      lambda {
+        Base64.b64encode("Now is the time for all good coders to learn Ruby", 2).should == b64encoded_version
+      }.should output
+    end
   
-  it "prints the Base64-encoded version of the given string with a newline after 60 characters" do
-    b64encoded_version ="Tm93IGlzIHRoZSB0aW1lIGZvciBhbGwgZ29vZCBjb2RlcnMgdG8gbGVhcm4g\nUnVieQ==\n"
-    lambda {
-      Base64.b64encode("Now is the time for all good coders to learn Ruby")
-    }.should output(b64encoded_version)
+    it "prints the Base64-encoded version of the given stringwith a newline after length characters" do
+      lambda {
+        Base64.b64encode("hello", 2).should == "aGVsbG8=\n" 
+      }.should output("aG\nVs\nbG\n8=\n")
+    end
   end
 end
-
-describe "Base64#b64encode with length" do
-  it "returns the Base64-encoded version of the given string with a newline at 60 characters" do
-    b64encoded_version = "Tm93IGlzIHRoZSB0aW1lIGZvciBhbGwgZ29vZCBjb2RlcnMgdG8gbGVhcm4g\nUnVieQ==\n"
-    lambda {
-      Base64.b64encode("Now is the time for all good coders to learn Ruby", 2).should == b64encoded_version
-    }.should output
-  end
-
-  it "prints the Base64-encoded version of the given stringwith a newline after length characters" do
-    lambda {
-      Base64.b64encode("hello", 2).should == "aGVsbG8=\n" 
-    }.should output("aG\nVs\nbG\n8=\n")
-  end
-end
