Revision
2848
Author
lsansonetti@apple.com
Date
2009-10-18 00:26:18 -0700 (Sun, 18 Oct 2009)

Log Message

added copyright headers

Modified Paths

Diff

Modified: MacRuby/trunk/lib/stringio.rb (2847 => 2848)


--- MacRuby/trunk/lib/stringio.rb	2009-10-18 04:26:40 UTC (rev 2847)
+++ MacRuby/trunk/lib/stringio.rb	2009-10-18 07:26:18 UTC (rev 2848)
@@ -1,3 +1,9 @@
+# MacRuby implementation of stringio.
+#
+# This file is covered by the Ruby license. See COPYING for more details.
+# 
+# Copyright (C) 2009, Apple Inc. All rights reserved.
+
 class StringIO
 
   attr_reader :string, :pos

Modified: MacRuby/trunk/lib/strscan.rb (2847 => 2848)


--- MacRuby/trunk/lib/strscan.rb	2009-10-18 04:26:40 UTC (rev 2847)
+++ MacRuby/trunk/lib/strscan.rb	2009-10-18 07:26:18 UTC (rev 2848)
@@ -1,3 +1,9 @@
+# MacRuby implementation of strscan.
+#
+# This file is covered by the Ruby license. See COPYING for more details.
+# 
+# Copyright (C) 2009, Apple Inc. All rights reserved.
+
 class ScanError < StandardError; end
 
 # StringScanner provides for lexical scanning operations on a String.  Here is
@@ -640,4 +646,4 @@
     getstr ? m : m.size
   end
   
-end
\ No newline at end of file
+end