[macruby-changes] [5168] MacRuby/trunk

source_changes at macosforge.org source_changes at macosforge.org
Fri Jan 14 20:35:33 PST 2011


Revision: 5168
          http://trac.macosforge.org/projects/ruby/changeset/5168
Author:   lsansonetti at apple.com
Date:     2011-01-14 20:35:28 -0800 (Fri, 14 Jan 2011)
Log Message:
-----------
update copyrights to 2011

Modified Paths:
--------------
    MacRuby/trunk/MacRuby.m
    MacRuby/trunk/MacRubyDebuggerConnector.h
    MacRuby/trunk/MacRubyDebuggerConnector.m
    MacRuby/trunk/NSArray.m
    MacRuby/trunk/NSDictionary.m
    MacRuby/trunk/NSString.m
    MacRuby/trunk/array.c
    MacRuby/trunk/array.h
    MacRuby/trunk/bignum.c
    MacRuby/trunk/bin/ruby_deploy
    MacRuby/trunk/bin/ruby_select
    MacRuby/trunk/bin/rubyc
    MacRuby/trunk/bin/rubyd
    MacRuby/trunk/bridgesupport.cpp
    MacRuby/trunk/bridgesupport.h
    MacRuby/trunk/bs.c
    MacRuby/trunk/bs.h
    MacRuby/trunk/class.c
    MacRuby/trunk/class.h
    MacRuby/trunk/compar.c
    MacRuby/trunk/compiler.cpp
    MacRuby/trunk/compiler.h
    MacRuby/trunk/complex.c
    MacRuby/trunk/debugger.cpp
    MacRuby/trunk/debugger.h
    MacRuby/trunk/dir.c
    MacRuby/trunk/dispatcher.cpp
    MacRuby/trunk/dln.c
    MacRuby/trunk/encoding.c
    MacRuby/trunk/encoding.h
    MacRuby/trunk/encoding_ucnv.h
    MacRuby/trunk/enum.c
    MacRuby/trunk/enumerator.c
    MacRuby/trunk/env.c
    MacRuby/trunk/error.c
    MacRuby/trunk/eval.c
    MacRuby/trunk/eval_error.c
    MacRuby/trunk/eval_jump.c
    MacRuby/trunk/eval_safe.c
    MacRuby/trunk/file.c
    MacRuby/trunk/gc-stub.m
    MacRuby/trunk/gc.c
    MacRuby/trunk/gcd.c
    MacRuby/trunk/gcd.h
    MacRuby/trunk/hash.c
    MacRuby/trunk/hash.h
    MacRuby/trunk/id.c
    MacRuby/trunk/id.h
    MacRuby/trunk/inits.c
    MacRuby/trunk/interpreter.cpp
    MacRuby/trunk/interpreter.h
    MacRuby/trunk/io.c
    MacRuby/trunk/kernel.c
    MacRuby/trunk/lib/stringio.rb
    MacRuby/trunk/lib/strscan.rb
    MacRuby/trunk/load.c
    MacRuby/trunk/macruby_internal.h
    MacRuby/trunk/main.cpp
    MacRuby/trunk/markgc.c
    MacRuby/trunk/marshal.c
    MacRuby/trunk/math.c
    MacRuby/trunk/numeric.c
    MacRuby/trunk/objc.h
    MacRuby/trunk/objc.m
    MacRuby/trunk/object.c
    MacRuby/trunk/pack.c
    MacRuby/trunk/parse.y
    MacRuby/trunk/prec.c
    MacRuby/trunk/proc.c
    MacRuby/trunk/process.c
    MacRuby/trunk/random.c
    MacRuby/trunk/range.c
    MacRuby/trunk/rational.c
    MacRuby/trunk/re.c
    MacRuby/trunk/re.h
    MacRuby/trunk/ruby.c
    MacRuby/trunk/sandbox.c
    MacRuby/trunk/signal.c
    MacRuby/trunk/sprintf.c
    MacRuby/trunk/string.c
    MacRuby/trunk/struct.c
    MacRuby/trunk/symbol.c
    MacRuby/trunk/symbol.h
    MacRuby/trunk/thread.c
    MacRuby/trunk/time.c
    MacRuby/trunk/transcode.c
    MacRuby/trunk/ucnv.c
    MacRuby/trunk/variable.c
    MacRuby/trunk/version.c
    MacRuby/trunk/version.h
    MacRuby/trunk/vm.cpp
    MacRuby/trunk/vm.h
    MacRuby/trunk/vm_eval.c
    MacRuby/trunk/vm_method.c

Modified: MacRuby/trunk/MacRuby.m
===================================================================
--- MacRuby/trunk/MacRuby.m	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/MacRuby.m	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  * 
  * This file is covered by the Ruby license. See COPYING for more details.
  *
- * Copyright (C) 2009-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2009-2011, Apple Inc. All rights reserved.
  */
 
 #import <Foundation/Foundation.h>

Modified: MacRuby/trunk/MacRubyDebuggerConnector.h
===================================================================
--- MacRuby/trunk/MacRubyDebuggerConnector.h	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/MacRubyDebuggerConnector.h	2011-01-15 04:35:28 UTC (rev 5168)
@@ -8,7 +8,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2010-2011, Apple Inc. All rights reserved.
  */
 
 #import <Foundation/Foundation.h>

Modified: MacRuby/trunk/MacRubyDebuggerConnector.m
===================================================================
--- MacRuby/trunk/MacRubyDebuggerConnector.m	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/MacRubyDebuggerConnector.m	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2010-2011, Apple Inc. All rights reserved.
  */
 
 #import "MacRubyDebuggerConnector.h"

Modified: MacRuby/trunk/NSArray.m
===================================================================
--- MacRuby/trunk/NSArray.m	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/NSArray.m	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  * 
  * This file is covered by the Ruby license. See COPYING for more details.
  *
- * Copyright (C) 2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2010-2011, Apple Inc. All rights reserved.
  */
 
 #import <Foundation/Foundation.h>

Modified: MacRuby/trunk/NSDictionary.m
===================================================================
--- MacRuby/trunk/NSDictionary.m	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/NSDictionary.m	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  * 
  * This file is covered by the Ruby license. See COPYING for more details.
  *
- * Copyright (C) 2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2010-2011, Apple Inc. All rights reserved.
  */
 
 #import <Foundation/Foundation.h>

Modified: MacRuby/trunk/NSString.m
===================================================================
--- MacRuby/trunk/NSString.m	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/NSString.m	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  * 
  * This file is covered by the Ruby license. See COPYING for more details.
  *
- * Copyright (C) 2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2010-2011, Apple Inc. All rights reserved.
  */
 
 #import <Foundation/Foundation.h>

Modified: MacRuby/trunk/array.c
===================================================================
--- MacRuby/trunk/array.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/array.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2007-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
  * Copyright (C) 1993-2007 Yukihiro Matsumoto
  * Copyright (C) 2000 Network Applied Communication Laboratory, Inc.
  * Copyright (C) 2000 Information-technology Promotion Agency, Japan

Modified: MacRuby/trunk/array.h
===================================================================
--- MacRuby/trunk/array.h	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/array.h	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2011, Apple Inc. All rights reserved.
  */
 
 #ifndef __ARRAY_H_

Modified: MacRuby/trunk/bignum.c
===================================================================
--- MacRuby/trunk/bignum.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/bignum.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,14 +1,10 @@
-/**********************************************************************
+/*
+ * This file is covered by the Ruby license. See COPYING for more details.
+ * 
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
+ * Copyright (C) 1993-2007 Yukihiro Matsumoto
+ */
 
-  bignum.c -
-
-  $Author: akr $
-  created at: Fri Jun 10 00:48:55 JST 1994
-
-  Copyright (C) 1993-2007 Yukihiro Matsumoto
-
-**********************************************************************/
-
 #include "macruby_internal.h"
 
 #include "objc.h"

Modified: MacRuby/trunk/bin/ruby_deploy
===================================================================
--- MacRuby/trunk/bin/ruby_deploy	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/bin/ruby_deploy	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
 #
 # This file is covered by the Ruby license.
 #
-# Copyright (C) 2009-2010, Apple Inc
+# Copyright (C) 2009-2011, Apple Inc
 
 require 'optparse'
 require 'rbconfig'

Modified: MacRuby/trunk/bin/ruby_select
===================================================================
--- MacRuby/trunk/bin/ruby_select	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/bin/ruby_select	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,4 +1,8 @@
 #!/usr/bin/ruby
+#
+# This file is covered by the Ruby license.
+#
+# Copyright (C) 2009-2011, Apple Inc
 
 MACRUBY_FRAMEWORK = '/Library/Frameworks/MacRuby.framework'
 

Modified: MacRuby/trunk/bin/rubyc
===================================================================
--- MacRuby/trunk/bin/rubyc	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/bin/rubyc	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
 #
 # This file is covered by the Ruby license.
 #
-# Copyright (C) 2009-2010, Apple Inc
+# Copyright (C) 2009-2011, Apple Inc
 
 require 'optparse'
 require 'rbconfig'

Modified: MacRuby/trunk/bin/rubyd
===================================================================
--- MacRuby/trunk/bin/rubyd	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/bin/rubyd	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
 #
 # This file is covered by the Ruby license.
 #
-# Copyright (C) 2010, Apple Inc
+# Copyright (C) 2010-2011, Apple Inc
 
 require 'readline'
 require 'rbconfig'

Modified: MacRuby/trunk/bridgesupport.cpp
===================================================================
--- MacRuby/trunk/bridgesupport.cpp	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/bridgesupport.cpp	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2007-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
  */
 
 #if MACRUBY_STATIC

Modified: MacRuby/trunk/bridgesupport.h
===================================================================
--- MacRuby/trunk/bridgesupport.h	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/bridgesupport.h	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2007-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
  */
 
 #ifndef __BRIDGESUPPORT_H_

Modified: MacRuby/trunk/bs.c
===================================================================
--- MacRuby/trunk/bs.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/bs.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,5 +1,5 @@
 /*  
- *  Copyright (c) 2008-2010, Apple Inc. All rights reserved.
+ *  Copyright (c) 2008-2011, Apple Inc. All rights reserved.
  *
  *  Redistribution and use in source and binary forms, with or without
  *  modification, are permitted provided that the following conditions

Modified: MacRuby/trunk/bs.h
===================================================================
--- MacRuby/trunk/bs.h	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/bs.h	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,5 +1,5 @@
 /*  
- *  Copyright (c) 2008-2010, Apple Inc. All rights reserved.
+ *  Copyright (c) 2008-2011, Apple Inc. All rights reserved.
  *
  *  Redistribution and use in source and binary forms, with or without
  *  modification, are permitted provided that the following conditions

Modified: MacRuby/trunk/class.c
===================================================================
--- MacRuby/trunk/class.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/class.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2007-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
  * Copyright (C) 1993-2007 Yukihiro Matsumoto
  * Copyright (C) 2000 Network Applied Communication Laboratory, Inc.
  * Copyright (C) 2000 Information-technology Promotion Agency, Japan

Modified: MacRuby/trunk/class.h
===================================================================
--- MacRuby/trunk/class.h	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/class.h	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,7 +1,7 @@
 /*
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2011, Apple Inc. All rights reserved.
  */
 
 #ifndef __CLASS_H_

Modified: MacRuby/trunk/compar.c
===================================================================
--- MacRuby/trunk/compar.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/compar.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,14 +1,10 @@
-/**********************************************************************
+/*
+ * This file is covered by the Ruby license. See COPYING for more details.
+ * 
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
+ * Copyright (C) 1993-2007 Yukihiro Matsumoto
+ */
 
-  compar.c -
-
-  $Author: matz $
-  created at: Thu Aug 26 14:39:48 JST 1993
-
-  Copyright (C) 1993-2007 Yukihiro Matsumoto
-
-**********************************************************************/
-
 #include "macruby_internal.h"
 #include "ruby/node.h"
 #include "vm.h"

Modified: MacRuby/trunk/compiler.cpp
===================================================================
--- MacRuby/trunk/compiler.cpp	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/compiler.cpp	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2008-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2008-2011, Apple Inc. All rights reserved.
  */
 
 #if !defined(MACRUBY_STATIC)

Modified: MacRuby/trunk/compiler.h
===================================================================
--- MacRuby/trunk/compiler.h	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/compiler.h	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2008-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2008-2011, Apple Inc. All rights reserved.
  */
 
 #ifndef __COMPILER_H_

Modified: MacRuby/trunk/complex.c
===================================================================
--- MacRuby/trunk/complex.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/complex.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,10 +1,10 @@
 /*
-  complex.c: Coded by Tadayoshi Funaba 2008,2009
+ * This file is covered by the Ruby license. See COPYING for more details.
+ * 
+ * Copyright (C) 2009-2011, Apple Inc. All rights reserved.
+ * Copyright (C) 2008-2009, Tadayoshi Funaba
+ */
 
-  This implementation is based on Keiju Ishitsuka's Complex library
-  which is written in ruby.
-*/
-
 #include "macruby_internal.h"
 #include <math.h>
 #include "ruby/node.h"

Modified: MacRuby/trunk/debugger.cpp
===================================================================
--- MacRuby/trunk/debugger.cpp	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/debugger.cpp	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2010-2011, Apple Inc. All rights reserved.
  */
 
 #if !defined(MACRUBY_STATIC)

Modified: MacRuby/trunk/debugger.h
===================================================================
--- MacRuby/trunk/debugger.h	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/debugger.h	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2010-2011, Apple Inc. All rights reserved.
  */
 
 #ifndef __DEBUGGER_H_

Modified: MacRuby/trunk/dir.c
===================================================================
--- MacRuby/trunk/dir.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/dir.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,16 +1,12 @@
-/**********************************************************************
+/*
+ * This file is covered by the Ruby license. See COPYING for more details.
+ * 
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
+ * Copyright (C) 1993-2007 Yukihiro Matsumoto
+ * Copyright (C) 2000  Network Applied Communication Laboratory, Inc.
+ * Copyright (C) 2000  Information-technology Promotion Agency, Japan
+ */
 
-  dir.c -
-
-  $Author: nobu $
-  created at: Wed Jan  5 09:51:01 JST 1994
-
-  Copyright (C) 1993-2007 Yukihiro Matsumoto
-  Copyright (C) 2000  Network Applied Communication Laboratory, Inc.
-  Copyright (C) 2000  Information-technology Promotion Agency, Japan
-
-**********************************************************************/
-
 #include "macruby_internal.h"
 #include "ruby/node.h"
 #include "ruby/util.h"

Modified: MacRuby/trunk/dispatcher.cpp
===================================================================
--- MacRuby/trunk/dispatcher.cpp	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/dispatcher.cpp	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2008-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2008-2011, Apple Inc. All rights reserved.
  */
 
 #include "llvm.h"

Modified: MacRuby/trunk/dln.c
===================================================================
--- MacRuby/trunk/dln.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/dln.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,14 +1,10 @@
-/**********************************************************************
+/*
+ * This file is covered by the Ruby license. See COPYING for more details.
+ * 
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
+ * Copyright (C) 1993-2007 Yukihiro Matsumoto
+ */
 
-  dln.c -
-
-  $Author: nobu $
-  created at: Tue Jan 18 17:05:06 JST 1994
-
-  Copyright (C) 1993-2007 Yukihiro Matsumoto
-
-**********************************************************************/
-
 #include "macruby_internal.h"
 #include "ruby/node.h"
 #include "vm.h"

Modified: MacRuby/trunk/encoding.c
===================================================================
--- MacRuby/trunk/encoding.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/encoding.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2007-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
  * Copyright (C) 1993-2007 Yukihiro Matsumoto
  * Copyright (C) 2000 Network Applied Communication Laboratory, Inc.
  * Copyright (C) 2000 Information-technology Promotion Agency, Japan

Modified: MacRuby/trunk/encoding.h
===================================================================
--- MacRuby/trunk/encoding.h	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/encoding.h	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2007-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
  * Copyright (C) 1993-2007 Yukihiro Matsumoto
  * Copyright (C) 2000 Network Applied Communication Laboratory, Inc.
  * Copyright (C) 2000 Information-technology Promotion Agency, Japan

Modified: MacRuby/trunk/encoding_ucnv.h
===================================================================
--- MacRuby/trunk/encoding_ucnv.h	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/encoding_ucnv.h	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2007-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
  * Copyright (C) 1993-2007 Yukihiro Matsumoto
  * Copyright (C) 2000 Network Applied Communication Laboratory, Inc.
  * Copyright (C) 2000 Information-technology Promotion Agency, Japan

Modified: MacRuby/trunk/enum.c
===================================================================
--- MacRuby/trunk/enum.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/enum.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,14 +1,10 @@
-/**********************************************************************
+/*
+ * This file is covered by the Ruby license. See COPYING for more details.
+ * 
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
+ * Copyright (C) 1993-2007 Yukihiro Matsumoto
+ */
 
-  enum.c -
-
-  $Author: knu $
-  created at: Fri Oct  1 15:15:19 JST 1993
-
-  Copyright (C) 1993-2007 Yukihiro Matsumoto
-
-**********************************************************************/
-
 #include "macruby_internal.h"
 #include "ruby/node.h"
 #include "ruby/util.h"

Modified: MacRuby/trunk/enumerator.c
===================================================================
--- MacRuby/trunk/enumerator.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/enumerator.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,17 +1,10 @@
-/************************************************
+/*
+ * This file is covered by the Ruby license. See COPYING for more details.
+ * 
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
+ * Copyright (C) 2001-2003 Akinori MUSHA
+ */
 
-  enumerator.c - provides Enumerator class
-
-  $Author: knu $
-
-  Copyright (C) 2001-2003 Akinori MUSHA
-
-  $Idaemons: /home/cvs/rb/enumerator/enumerator.c,v 1.1.1.1 2001/07/15 10:12:48 knu Exp $
-  $RoughId: enumerator.c,v 1.6 2003/07/27 11:03:24 nobu Exp $
-  $Id: enumerator.c 16614 2008-05-26 08:49:08Z knu $
-
-************************************************/
-
 #include "macruby_internal.h"
 #include "id.h"
 

Modified: MacRuby/trunk/env.c
===================================================================
--- MacRuby/trunk/env.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/env.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2007-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
  * Copyright (C) 1993-2007 Yukihiro Matsumoto
  * Copyright (C) 2000 Network Applied Communication Laboratory, Inc.
  * Copyright (C) 2000 Information-technology Promotion Agency, Japan

Modified: MacRuby/trunk/error.c
===================================================================
--- MacRuby/trunk/error.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/error.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,14 +1,10 @@
-/**********************************************************************
+/*
+ * This file is covered by the Ruby license. See COPYING for more details.
+ * 
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
+ * Copyright (C) 1993-2007 Yukihiro Matsumoto
+ */
 
-  error.c -
-
-  $Author: matz $
-  created at: Mon Aug  9 16:11:34 JST 1993
-
-  Copyright (C) 1993-2007 Yukihiro Matsumoto
-
-**********************************************************************/
-
 #include "macruby_internal.h"
 #include "ruby/st.h"
 #include "ruby/node.h"

Modified: MacRuby/trunk/eval.c
===================================================================
--- MacRuby/trunk/eval.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/eval.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2007-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
  * Copyright (C) 1993-2007 Yukihiro Matsumoto
  * Copyright (C) 2000 Network Applied Communication Laboratory, Inc.
  * Copyright (C) 2000 Information-technology Promotion Agency, Japan

Modified: MacRuby/trunk/eval_error.c
===================================================================
--- MacRuby/trunk/eval_error.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/eval_error.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,5 +1,13 @@
-/* -*-c-*- */
 /*
+ * This file is covered by the Ruby license. See COPYING for more details.
+ * 
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
+ * Copyright (C) 1993-2007 Yukihiro Matsumoto
+ * Copyright (C) 2000 Network Applied Communication Laboratory, Inc.
+ * Copyright (C) 2000 Information-technology Promotion Agency, Japan
+ */
+
+/*
  * included by eval.c
  */
 

Modified: MacRuby/trunk/eval_jump.c
===================================================================
--- MacRuby/trunk/eval_jump.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/eval_jump.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,5 +1,13 @@
-/* -*-c-*- */
 /*
+ * This file is covered by the Ruby license. See COPYING for more details.
+ * 
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
+ * Copyright (C) 1993-2007 Yukihiro Matsumoto
+ * Copyright (C) 2000 Network Applied Communication Laboratory, Inc.
+ * Copyright (C) 2000 Information-technology Promotion Agency, Japan
+ */
+
+/*
  * from eval.c
  */
 

Modified: MacRuby/trunk/eval_safe.c
===================================================================
--- MacRuby/trunk/eval_safe.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/eval_safe.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,5 +1,13 @@
-/* -*-c-*- */
 /*
+ * This file is covered by the Ruby license. See COPYING for more details.
+ * 
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
+ * Copyright (C) 1993-2007 Yukihiro Matsumoto
+ * Copyright (C) 2000 Network Applied Communication Laboratory, Inc.
+ * Copyright (C) 2000 Information-technology Promotion Agency, Japan
+ */
+
+/*
  * This file is included by eval.c
  */
 

Modified: MacRuby/trunk/file.c
===================================================================
--- MacRuby/trunk/file.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/file.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,16 +1,12 @@
-/**********************************************************************
+/*
+ * This file is covered by the Ruby license. See COPYING for more details.
+ * 
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
+ * Copyright (C) 1993-2007 Yukihiro Matsumoto
+ * Copyright (C) 2000  Network Applied Communication Laboratory, Inc.
+ * Copyright (C) 2000  Information-technology Promotion Agency, Japan
+ */
 
-  file.c -
-
-  $Author: nobu $
-  created at: Mon Nov 15 12:24:34 JST 1993
-
-  Copyright (C) 1993-2007 Yukihiro Matsumoto
-  Copyright (C) 2000  Network Applied Communication Laboratory, Inc.
-  Copyright (C) 2000  Information-technology Promotion Agency, Japan
-
-**********************************************************************/
-
 #include "macruby_internal.h"
 #include "ruby/io.h"
 #include "ruby/signal.h"

Modified: MacRuby/trunk/gc-stub.m
===================================================================
--- MacRuby/trunk/gc-stub.m	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/gc-stub.m	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,5 +1,5 @@
 /*  
- *  Copyright (c) 2008-2010, Apple Inc. All rights reserved.
+ *  Copyright (c) 2008-2011, Apple Inc. All rights reserved.
  *
  *  Redistribution and use in source and binary forms, with or without
  *  modification, are permitted provided that the following conditions

Modified: MacRuby/trunk/gc.c
===================================================================
--- MacRuby/trunk/gc.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/gc.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2007-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
  * Copyright (C) 1993-2007 Yukihiro Matsumoto
  * Copyright (C) 2000 Network Applied Communication Laboratory, Inc.
  * Copyright (C) 2000 Information-technology Promotion Agency, Japan

Modified: MacRuby/trunk/gcd.c
===================================================================
--- MacRuby/trunk/gcd.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/gcd.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2009-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2009-2011, Apple Inc. All rights reserved.
  */
 
 #define GCD_BLOCKS_COPY_DVARS 1

Modified: MacRuby/trunk/gcd.h
===================================================================
--- MacRuby/trunk/gcd.h	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/gcd.h	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2009-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2009-2011, Apple Inc. All rights reserved.
  */
 
 #ifndef __GCD_H_

Modified: MacRuby/trunk/hash.c
===================================================================
--- MacRuby/trunk/hash.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/hash.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2007-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
  * Copyright (C) 1993-2007 Yukihiro Matsumoto
  * Copyright (C) 2000 Network Applied Communication Laboratory, Inc.
  * Copyright (C) 2000 Information-technology Promotion Agency, Japan

Modified: MacRuby/trunk/hash.h
===================================================================
--- MacRuby/trunk/hash.h	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/hash.h	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,7 +1,7 @@
 /* 
  * MacRuby Hash.
  *
- * Copyright (C) 2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2011, Apple Inc. All rights reserved.
  */
 
 #ifndef __HASH_H_

Modified: MacRuby/trunk/id.c
===================================================================
--- MacRuby/trunk/id.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/id.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,14 +1,10 @@
-/**********************************************************************
+/*
+ * This file is covered by the Ruby license. See COPYING for more details.
+ * 
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
+ * Copyright (C) 2004-2007 Koichi Sasada
+ */
 
-  id.c - 
-
-  $Author: ko1 $
-  created at: Thu Jul 12 04:37:51 2007
-
-  Copyright (C) 2004-2007 Koichi Sasada
-
-**********************************************************************/
-
 #include "macruby_internal.h"
 #include "ruby/node.h"
 #include "vm.h"

Modified: MacRuby/trunk/id.h
===================================================================
--- MacRuby/trunk/id.h	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/id.h	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,14 +1,10 @@
-/**********************************************************************
+/*
+ * This file is covered by the Ruby license. See COPYING for more details.
+ * 
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
+ * Copyright (C) 2007 Koichi Sasada
+ */
 
-  id.h - 
-
-  $Author: ko1 $
-  created at: Thu Jul 12 04:38:07 2007
-
-  Copyright (C) 2007 Koichi Sasada
-
-**********************************************************************/
-
 #ifndef RUBY_ID_H
 #define RUBY_ID_H
 

Modified: MacRuby/trunk/inits.c
===================================================================
--- MacRuby/trunk/inits.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/inits.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,14 +1,10 @@
-/**********************************************************************
+/*
+ * This file is covered by the Ruby license. See COPYING for more details.
+ * 
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
+ * Copyright (C) 1993-2007 Yukihiro Matsumoto
+ */
 
-  inits.c -
-
-  $Author: tadf $
-  created at: Tue Dec 28 16:01:58 JST 1993
-
-  Copyright (C) 1993-2007 Yukihiro Matsumoto
-
-**********************************************************************/
-
 #include "macruby_internal.h"
 
 void Init_Array(void);

Modified: MacRuby/trunk/interpreter.cpp
===================================================================
--- MacRuby/trunk/interpreter.cpp	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/interpreter.cpp	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2008-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2008-2011, Apple Inc. All rights reserved.
  */
 
 #if !defined(MACRUBY_STATIC)

Modified: MacRuby/trunk/interpreter.h
===================================================================
--- MacRuby/trunk/interpreter.h	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/interpreter.h	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2008-2011, Apple Inc. All rights reserved.
  */
 
 #ifndef __INTERPRETER_H_

Modified: MacRuby/trunk/io.c
===================================================================
--- MacRuby/trunk/io.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/io.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2007-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
  * Copyright (C) 1993-2007 Yukihiro Matsumoto
  * Copyright (C) 2000 Network Applied Communication Laboratory, Inc.
  * Copyright (C) 2000 Information-technology Promotion Agency, Japan

Modified: MacRuby/trunk/kernel.c
===================================================================
--- MacRuby/trunk/kernel.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/kernel.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -5,7 +5,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2011, Apple Inc. All rights reserved.
  */
 
 #include "macruby_internal.h"

Modified: MacRuby/trunk/lib/stringio.rb
===================================================================
--- MacRuby/trunk/lib/stringio.rb	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/lib/stringio.rb	2011-01-15 04:35:28 UTC (rev 5168)
@@ -2,7 +2,7 @@
 #
 # This file is covered by the Ruby license. See COPYING for more details.
 #
-# Copyright (C) 2009-2010, Apple Inc. All rights reserved.
+# Copyright (C) 2009-2011, Apple Inc. All rights reserved.
 
 class StringIO
 

Modified: MacRuby/trunk/lib/strscan.rb
===================================================================
--- MacRuby/trunk/lib/strscan.rb	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/lib/strscan.rb	2011-01-15 04:35:28 UTC (rev 5168)
@@ -2,7 +2,7 @@
 #
 # This file is covered by the Ruby license. See COPYING for more details.
 #
-# Copyright (C) 2009-2010, Apple Inc. All rights reserved.
+# Copyright (C) 2009-2011, Apple Inc. All rights reserved.
 
 class ScanError < StandardError; end
 

Modified: MacRuby/trunk/load.c
===================================================================
--- MacRuby/trunk/load.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/load.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2009-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2009-2011, Apple Inc. All rights reserved.
  */
 
 #include <sys/stat.h>

Modified: MacRuby/trunk/macruby_internal.h
===================================================================
--- MacRuby/trunk/macruby_internal.h	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/macruby_internal.h	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,7 +1,7 @@
 /*
  * This file is covered by the Ruby license. See COPYING for more details.
  *
- * Copyright (C) 2007-2010, Apple Inc. All rights reserved 
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved 
  */
 
 #ifndef __MACRUBY_INTERNAL_H

Modified: MacRuby/trunk/main.cpp
===================================================================
--- MacRuby/trunk/main.cpp	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/main.cpp	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,7 +1,7 @@
 /*
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2007-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
  * Copyright (C) 1993-2007 Yukihiro Matsumoto
  */
 

Modified: MacRuby/trunk/markgc.c
===================================================================
--- MacRuby/trunk/markgc.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/markgc.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2007-2010, Apple Inc.  All Rights Reserved.
+ * Copyright (c) 2007-2011, Apple Inc.  All Rights Reserved.
  * 
  * @APPLE_LICENSE_HEADER_START@
  * 

Modified: MacRuby/trunk/marshal.c
===================================================================
--- MacRuby/trunk/marshal.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/marshal.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,14 +1,10 @@
-/**********************************************************************
+/*
+ * This file is covered by the Ruby license. See COPYING for more details.
+ * 
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
+ * Copyright (C) 1993-2007 Yukihiro Matsumoto
+ */
 
-  marshal.c -
-
-  $Author: mame $
-  created at: Thu Apr 27 16:30:01 JST 1995
-
-  Copyright (C) 1993-2007 Yukihiro Matsumoto
-
-**********************************************************************/
-
 #include "macruby_internal.h"
 #include "ruby/io.h"
 #include "ruby/st.h"

Modified: MacRuby/trunk/math.c
===================================================================
--- MacRuby/trunk/math.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/math.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,14 +1,10 @@
-/**********************************************************************
+/*
+ * This file is covered by the Ruby license. See COPYING for more details.
+ * 
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
+ * Copyright (C) 1993-2007 Yukihiro Matsumoto
+ */
 
-  math.c -
-
-  $Author: nobu $
-  created at: Tue Jan 25 14:12:56 JST 1994
-
-  Copyright (C) 1993-2007 Yukihiro Matsumoto
-
-**********************************************************************/
-
 #include "macruby_internal.h"
 #include <math.h>
 #include <errno.h>

Modified: MacRuby/trunk/numeric.c
===================================================================
--- MacRuby/trunk/numeric.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/numeric.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  * 
  * This file is covered by the Ruby license. See COPYING for more details.
  *
- * Copyright (C) 2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
  * Copyright (C) 1993-2007 Yukihiro Matsumoto
  */
 

Modified: MacRuby/trunk/objc.h
===================================================================
--- MacRuby/trunk/objc.h	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/objc.h	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2007-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
  */
 
 #ifndef __OBJC_H_

Modified: MacRuby/trunk/objc.m
===================================================================
--- MacRuby/trunk/objc.m	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/objc.m	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2007-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
  */
 
 #include <Foundation/Foundation.h>

Modified: MacRuby/trunk/object.c
===================================================================
--- MacRuby/trunk/object.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/object.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2007-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
  * Copyright (C) 1993-2007 Yukihiro Matsumoto
  * Copyright (C) 2000 Network Applied Communication Laboratory, Inc.
  * Copyright (C) 2000 Information-technology Promotion Agency, Japan

Modified: MacRuby/trunk/pack.c
===================================================================
--- MacRuby/trunk/pack.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/pack.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,14 +1,10 @@
-/**********************************************************************
+/*
+ * This file is covered by the Ruby license. See COPYING for more details.
+ * 
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
+ * Copyright (C) 1993-2007 Yukihiro Matsumoto
+ */
 
-  pack.c -
-
-  $Author: nobu $
-  created at: Thu Feb 10 15:17:05 JST 1994
-
-  Copyright (C) 1993-2007 Yukihiro Matsumoto
-
-**********************************************************************/
-
 #include <sys/types.h>
 #include <ctype.h>
 #include <errno.h>

Modified: MacRuby/trunk/parse.y
===================================================================
--- MacRuby/trunk/parse.y	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/parse.y	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,14 +1,10 @@
-/**********************************************************************
+/*
+ * This file is covered by the Ruby license. See COPYING for more details.
+ * 
+ * Copyright (C) 2007-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 1993-2007 Yukihiro Matsumoto
+ */
 
-  parse.y -
-
-  $Author: mame $
-  created at: Fri May 28 18:02:42 JST 1993
-
-  Copyright (C) 1993-2007 Yukihiro Matsumoto
-
-**********************************************************************/
-
 %{
 
 #define YYDEBUG 1

Modified: MacRuby/trunk/prec.c
===================================================================
--- MacRuby/trunk/prec.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/prec.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,14 +1,10 @@
-/**********************************************************************
+/*
+ * This file is covered by the Ruby license. See COPYING for more details.
+ * 
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
+ * Copyright (C) 1993-2007 Yukihiro Matsumoto
+ */
 
-  prec.c -
-
-  $Author: akr $
-  created at: Tue Jan 26 02:40:41 2000
-
-  Copyright (C) 1993-2007 Yukihiro Matsumoto
-
-**********************************************************************/
-
 #include "macruby_internal.h"
 
 VALUE rb_mPrecision;

Modified: MacRuby/trunk/proc.c
===================================================================
--- MacRuby/trunk/proc.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/proc.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2007-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
  * Copyright (C) 2004-2007 Koichi Sasada
  */
 

Modified: MacRuby/trunk/process.c
===================================================================
--- MacRuby/trunk/process.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/process.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,16 +1,12 @@
-/**********************************************************************
+/*
+ * This file is covered by the Ruby license. See COPYING for more details.
+ * 
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
+ * Copyright (C) 1993-2007 Yukihiro Matsumoto
+ * Copyright (C) 2000  Network Applied Communication Laboratory, Inc.
+ * Copyright (C) 2000  Information-technology Promotion Agency, Japan
+ */
 
-  process.c -
-
-  $Author: usa $
-  created at: Tue Aug 10 14:30:50 JST 1993
-
-  Copyright (C) 1993-2007 Yukihiro Matsumoto
-  Copyright (C) 2000  Network Applied Communication Laboratory, Inc.
-  Copyright (C) 2000  Information-technology Promotion Agency, Japan
-
-**********************************************************************/
-
 #include "macruby_internal.h"
 #include "ruby/signal.h"
 #include "ruby/io.h"

Modified: MacRuby/trunk/random.c
===================================================================
--- MacRuby/trunk/random.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/random.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2007-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
  * Copyright (C) 1993-2007 Yukihiro Matsumoto
  */
 

Modified: MacRuby/trunk/range.c
===================================================================
--- MacRuby/trunk/range.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/range.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,14 +1,10 @@
-/**********************************************************************
+/*
+ * This file is covered by the Ruby license. See COPYING for more details.
+ * 
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
+ * Copyright (C) 1993-2007 Yukihiro Matsumoto
+ */
 
-  range.c -
-
-  $Author: matz $
-  created at: Thu Aug 19 17:46:47 JST 1993
-
-  Copyright (C) 1993-2007 Yukihiro Matsumoto
-
-**********************************************************************/
-
 #include "macruby_internal.h"
 #include "ruby/encoding.h"
 #include "ruby/node.h"

Modified: MacRuby/trunk/rational.c
===================================================================
--- MacRuby/trunk/rational.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/rational.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,10 +1,10 @@
 /*
-  rational.c: Coded by Tadayoshi Funaba 2008,2009
+ * This file is covered by the Ruby license. See COPYING for more details.
+ * 
+ * Copyright (C) 2009-2011, Apple Inc. All rights reserved.
+ * Copyright (C) 2008-2009, Tadayoshi Funaba
+ */
 
-  This implementation is based on Keiju Ishitsuka's Rational library
-  which is written in ruby.
-*/
-
 #include "macruby_internal.h"
 #include "ruby/node.h"
 #include "vm.h"

Modified: MacRuby/trunk/re.c
===================================================================
--- MacRuby/trunk/re.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/re.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2007-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
  * Copyright (C) 1993-2007 Yukihiro Matsumoto
  */
 

Modified: MacRuby/trunk/re.h
===================================================================
--- MacRuby/trunk/re.h	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/re.h	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2011, Apple Inc. All rights reserved.
  */
 
 #ifndef __RE_H_

Modified: MacRuby/trunk/ruby.c
===================================================================
--- MacRuby/trunk/ruby.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/ruby.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,16 +1,12 @@
-/**********************************************************************
+/*
+ * This file is covered by the Ruby license. See COPYING for more details.
+ * 
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
+ * Copyright (C) 1993-2007 Yukihiro Matsumoto
+ * Copyright (C) 2000  Network Applied Communication Laboratory, Inc.
+ * Copyright (C) 2000  Information-technology Promotion Agency, Japan
+ */
 
-  ruby.c -
-
-  $Author: nobu $
-  created at: Tue Aug 10 12:47:31 JST 1993
-
-  Copyright (C) 1993-2007 Yukihiro Matsumoto
-  Copyright (C) 2000  Network Applied Communication Laboratory, Inc.
-  Copyright (C) 2000  Information-technology Promotion Agency, Japan
-
-**********************************************************************/
-
 #include <stdio.h>
 #include <sys/types.h>
 #include <ctype.h>

Modified: MacRuby/trunk/sandbox.c
===================================================================
--- MacRuby/trunk/sandbox.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/sandbox.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2011, Apple Inc. All rights reserved.
  */
 
 #include <sandbox.h>

Modified: MacRuby/trunk/signal.c
===================================================================
--- MacRuby/trunk/signal.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/signal.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,16 +1,12 @@
-/**********************************************************************
+/*
+ * This file is covered by the Ruby license. See COPYING for more details.
+ * 
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
+ * Copyright (C) 1993-2007 Yukihiro Matsumoto
+ * Copyright (C) 2000  Network Applied Communication Laboratory, Inc.
+ * Copyright (C) 2000  Information-technology Promotion Agency, Japan
+ */
 
-  signal.c -
-
-  $Author: mame $
-  created at: Tue Dec 20 10:13:44 JST 1994
-
-  Copyright (C) 1993-2007 Yukihiro Matsumoto
-  Copyright (C) 2000  Network Applied Communication Laboratory, Inc.
-  Copyright (C) 2000  Information-technology Promotion Agency, Japan
-
-**********************************************************************/
-
 // TODO: rewrite me!
 
 #include "macruby_internal.h"

Modified: MacRuby/trunk/sprintf.c
===================================================================
--- MacRuby/trunk/sprintf.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/sprintf.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  *
- * Copyright (C) 2007-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
  * Copyright (C) 1993-2007 Yukihiro Matsumoto
  * Copyright (C) 2000  Network Applied Communication Laboratory, Inc.
  * Copyright (C) 2000  Information-technology Promotion Agency, Japan

Modified: MacRuby/trunk/string.c
===================================================================
--- MacRuby/trunk/string.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/string.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2007-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
  * Copyright (C) 1993-2007 Yukihiro Matsumoto
  * Copyright (C) 2000 Network Applied Communication Laboratory, Inc.
  * Copyright (C) 2000 Information-technology Promotion Agency, Japan

Modified: MacRuby/trunk/struct.c
===================================================================
--- MacRuby/trunk/struct.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/struct.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,14 +1,10 @@
-/**********************************************************************
+/*
+ * This file is covered by the Ruby license. See COPYING for more details.
+ * 
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
+ * Copyright (C) 1993-2007 Yukihiro Matsumoto
+ */
 
-  struct.c -
-
-  $Author: nobu $
-  created at: Tue Mar 22 18:44:30 JST 1995
-
-  Copyright (C) 1993-2007 Yukihiro Matsumoto
-
-**********************************************************************/
-
 #include "macruby_internal.h"
 #include "ruby/node.h"
 #include "vm.h"

Modified: MacRuby/trunk/symbol.c
===================================================================
--- MacRuby/trunk/symbol.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/symbol.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2010-2011, Apple Inc. All rights reserved.
  */
 
 #include <wctype.h>

Modified: MacRuby/trunk/symbol.h
===================================================================
--- MacRuby/trunk/symbol.h	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/symbol.h	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2010-2011, Apple Inc. All rights reserved.
  */
 
 #ifndef __SYMBOL_H_

Modified: MacRuby/trunk/thread.c
===================================================================
--- MacRuby/trunk/thread.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/thread.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2009-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2009-2011, Apple Inc. All rights reserved.
  * Copyright (C) 2004-2007 Koichi Sasada
  */
 

Modified: MacRuby/trunk/time.c
===================================================================
--- MacRuby/trunk/time.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/time.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2007-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
  * Copyright (C) 1993-2007 Yukihiro Matsumoto
  */
 

Modified: MacRuby/trunk/transcode.c
===================================================================
--- MacRuby/trunk/transcode.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/transcode.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2007-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
  * Copyright (C) 1993-2007 Yukihiro Matsumoto
  * Copyright (C) 2000 Network Applied Communication Laboratory, Inc.
  * Copyright (C) 2000 Information-technology Promotion Agency, Japan

Modified: MacRuby/trunk/ucnv.c
===================================================================
--- MacRuby/trunk/ucnv.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/ucnv.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2007-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
  * Copyright (C) 1993-2007 Yukihiro Matsumoto
  * Copyright (C) 2000 Network Applied Communication Laboratory, Inc.
  * Copyright (C) 2000 Information-technology Promotion Agency, Japan

Modified: MacRuby/trunk/variable.c
===================================================================
--- MacRuby/trunk/variable.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/variable.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,6 +1,7 @@
-/* This file is covered by the Ruby license. See COPYING for more details.
+/* 
+ * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2007-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
  * Copyright (C) 1993-2007 Yukihiro Matsumoto
  * Copyright (C) 2000  Network Applied Communication Laboratory, Inc.
  * Copyright (C) 2000  Information-technology Promotion Agency, Japan

Modified: MacRuby/trunk/version.c
===================================================================
--- MacRuby/trunk/version.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/version.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,14 +1,10 @@
-/**********************************************************************
+/*
+ * This file is covered by the Ruby license. See COPYING for more details.
+ * 
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
+ * Copyright (C) 1993-2007 Yukihiro Matsumoto
+ */
 
-  version.c -
-
-  $Author: nobu $
-  created at: Thu Sep 30 20:08:01 JST 1993
-
-  Copyright (C) 1993-2007 Yukihiro Matsumoto
-
-**********************************************************************/
-
 #include "macruby_internal.h"
 #include "version.h"
 #include "revision.h"

Modified: MacRuby/trunk/version.h
===================================================================
--- MacRuby/trunk/version.h	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/version.h	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,3 +1,10 @@
+/*
+ * This file is covered by the Ruby license. See COPYING for more details.
+ * 
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
+ * Copyright (C) 1993-2007 Yukihiro Matsumoto
+ */
+
 #define RUBY_ENGINE 		"macruby"
 #define MACRUBY_VERSION 	"0.9"
 

Modified: MacRuby/trunk/vm.cpp
===================================================================
--- MacRuby/trunk/vm.cpp	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/vm.cpp	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2008-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2008-2011, Apple Inc. All rights reserved.
  */
 
 #define ROXOR_VM_DEBUG		0

Modified: MacRuby/trunk/vm.h
===================================================================
--- MacRuby/trunk/vm.h	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/vm.h	2011-01-15 04:35:28 UTC (rev 5168)
@@ -3,7 +3,7 @@
  *
  * This file is covered by the Ruby license. See COPYING for more details.
  * 
- * Copyright (C) 2008-2010, Apple Inc. All rights reserved.
+ * Copyright (C) 2008-2011, Apple Inc. All rights reserved.
  */
 
 #ifndef __VM_H_

Modified: MacRuby/trunk/vm_eval.c
===================================================================
--- MacRuby/trunk/vm_eval.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/vm_eval.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,16 +1,12 @@
-/**********************************************************************
+/*
+ * This file is covered by the Ruby license. See COPYING for more details.
+ * 
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
+ * Copyright (C) 1993-2007 Yukihiro Matsumoto
+ * Copyright (C) 2000  Network Applied Communication Laboratory, Inc.
+ * Copyright (C) 2000  Information-technology Promotion Agency, Japan
+ */
 
-  vm_eval.c -
-
-  $Author: nobu $
-  created at: Sat May 24 16:02:32 JST 2008
-
-  Copyright (C) 1993-2007 Yukihiro Matsumoto
-  Copyright (C) 2000  Network Applied Communication Laboratory, Inc.
-  Copyright (C) 2000  Information-technology Promotion Agency, Japan
-
-**********************************************************************/
-
 #include "macruby_internal.h"
 #include "ruby/node.h"
 #include "ruby/st.h"

Modified: MacRuby/trunk/vm_method.c
===================================================================
--- MacRuby/trunk/vm_method.c	2011-01-15 03:57:58 UTC (rev 5167)
+++ MacRuby/trunk/vm_method.c	2011-01-15 04:35:28 UTC (rev 5168)
@@ -1,5 +1,13 @@
-/* -*-c-*- */
 /*
+ * This file is covered by the Ruby license. See COPYING for more details.
+ * 
+ * Copyright (C) 2007-2011, Apple Inc. All rights reserved.
+ * Copyright (C) 1993-2007 Yukihiro Matsumoto
+ * Copyright (C) 2000  Network Applied Communication Laboratory, Inc.
+ * Copyright (C) 2000  Information-technology Promotion Agency, Japan
+ */
+
+/*
  * This file is included by vm_eval.c
  */
 
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macruby-changes/attachments/20110114/f6a69944/attachment-0001.html>


More information about the macruby-changes mailing list