From 7d7d3e80fd68a5d709311af9d0fca4c336e3489f Mon Sep 17 00:00:00 2001 From: Mark Rada Date: Sun, 22 Apr 2012 11:39:27 -0400 Subject: [PATCH 1/2] Change ownership to The MacRuby Team and update copyrights --- MacRuby.m | 3 ++- MacRubyDebuggerConnector.h | 3 ++- MacRubyDebuggerConnector.m | 3 ++- NSArray.m | 3 ++- NSDictionary.m | 3 ++- NSString.m | 3 ++- array.c | 5 +++-- array.h | 3 ++- bignum.c | 3 ++- bin/rb_nibtool | 1 + bin/ruby_deploy | 1 + bin/ruby_select | 1 + bin/rubyc | 1 + bin/rubyd | 1 + bridgesupport.cpp | 1 + bridgesupport.h | 3 ++- bs.c | 3 ++- bs.h | 3 ++- class.c | 5 +++-- class.h | 3 ++- compar.c | 3 ++- compiler.cpp | 3 ++- compiler.h | 3 ++- complex.c | 3 ++- debugger.cpp | 3 ++- debugger.h | 3 ++- dir.c | 3 ++- dispatcher.cpp | 3 ++- dln.c | 3 ++- encoding.c | 5 +++-- encoding.h | 5 +++-- encoding_ucnv.h | 5 +++-- enum.c | 3 ++- enumerator.c | 3 ++- env.c | 5 +++-- error.c | 3 ++- eval.c | 5 +++-- eval_error.c | 3 ++- eval_jump.c | 3 ++- eval_safe.c | 3 ++- ext/libyaml/rubyext.c | 5 +++-- ext/zlib/zlib.c | 5 +++-- file.c | 3 ++- gc-stub.m | 3 ++- gc.c | 5 +++-- gcd.c | 3 ++- gcd.h | 3 ++- hash.c | 5 +++-- hash.h | 3 ++- id.c | 3 ++- id.h | 3 ++- include/MacRuby.h | 1 + include/ruby.h | 1 + include/ruby/defines.h | 3 ++- include/ruby/encoding.h | 1 + include/ruby/intern.h | 1 + include/ruby/io.h | 1 + include/ruby/node.h | 1 + include/ruby/objc.h | 3 ++- include/ruby/re.h | 3 ++- include/ruby/ruby.h | 1 + include/ruby/signal.h | 3 ++- include/ruby/util.h | 3 ++- include/rubyio.h | 1 + include/rubysig.h | 1 + inits.c | 3 ++- interpreter.cpp | 3 ++- interpreter.h | 3 ++- io.c | 5 +++-- kernel.c | 3 ++- lib/stringio.rb | 1 + lib/strscan.rb | 1 + load.c | 3 ++- macruby_internal.h | 3 ++- main.cpp | 3 ++- marshal.c | 3 ++- math.c | 1 + numeric.c | 1 + objc.h | 3 ++- objc.m | 3 ++- object.c | 5 +++-- pack.c | 3 ++- prec.c | 3 ++- proc.c | 5 +++-- process.c | 3 ++- random.c | 5 +++-- range.c | 1 + rational.c | 3 ++- re.c | 5 +++-- re.h | 5 +++-- ruby.c | 3 ++- sandbox.c | 5 +++-- signal.c | 3 ++- sprintf.c | 1 + string.c | 1 + struct.c | 3 ++- symbol.c | 5 +++-- symbol.h | 5 +++-- thread.c | 5 +++-- time.c | 5 +++-- transcode.c | 5 +++-- ucnv.c | 5 +++-- variable.c | 3 ++- version.c | 3 ++- version.h | 7 ++++--- vm.cpp | 3 ++- vm.h | 3 ++- vm_eval.c | 3 ++- vm_method.c | 4 ++-- 109 files changed, 222 insertions(+), 114 deletions(-) diff --git a/MacRuby.m b/MacRuby.m index 910d44bad..7fe8e27dc 100644 --- a/MacRuby.m +++ b/MacRuby.m @@ -1,8 +1,9 @@ /* * MacRuby Objective-C API. - * + * * This file is covered by the Ruby license. See COPYING for more details. * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2009-2011, Apple Inc. All rights reserved. */ diff --git a/MacRubyDebuggerConnector.h b/MacRubyDebuggerConnector.h index b0468015e..dc0794108 100644 --- a/MacRubyDebuggerConnector.h +++ b/MacRubyDebuggerConnector.h @@ -7,7 +7,8 @@ * enabled. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2010-2011, Apple Inc. All rights reserved. */ diff --git a/MacRubyDebuggerConnector.m b/MacRubyDebuggerConnector.m index 5b21f65ab..3e28b04c8 100644 --- a/MacRubyDebuggerConnector.m +++ b/MacRubyDebuggerConnector.m @@ -2,7 +2,8 @@ * MacRuby Debugger Connector. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2010-2011, Apple Inc. All rights reserved. */ diff --git a/NSArray.m b/NSArray.m index 2296d6a26..1eade3c2e 100644 --- a/NSArray.m +++ b/NSArray.m @@ -1,8 +1,9 @@ /* * MacRuby extensions to NSArray. - * + * * This file is covered by the Ruby license. See COPYING for more details. * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2010-2011, Apple Inc. All rights reserved. */ diff --git a/NSDictionary.m b/NSDictionary.m index 66ecf18ad..0dfba53c6 100644 --- a/NSDictionary.m +++ b/NSDictionary.m @@ -1,8 +1,9 @@ /* * MacRuby extensions to NSDictionary. - * + * * This file is covered by the Ruby license. See COPYING for more details. * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2010-2011, Apple Inc. All rights reserved. */ diff --git a/NSString.m b/NSString.m index 99f47db0f..bba5a0a75 100644 --- a/NSString.m +++ b/NSString.m @@ -1,8 +1,9 @@ /* * MacRuby extensions to NSString. - * + * * This file is covered by the Ruby license. See COPYING for more details. * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2010-2011, Apple Inc. All rights reserved. */ diff --git a/array.c b/array.c index ac310158c..68c6b2c33 100644 --- a/array.c +++ b/array.c @@ -1,8 +1,9 @@ -/* +/* * MacRuby implementation of Ruby 1.9's array.c. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. 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. diff --git a/array.h b/array.h index c007d2076..5d808e702 100644 --- a/array.h +++ b/array.h @@ -2,7 +2,8 @@ * MacRuby Array. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2011, Apple Inc. All rights reserved. */ diff --git a/bignum.c b/bignum.c index a7a594748..e8d6a53c5 100644 --- a/bignum.c +++ b/bignum.c @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2011, Apple Inc. All rights reserved. * Copyright (C) 1993-2007 Yukihiro Matsumoto */ diff --git a/bin/rb_nibtool b/bin/rb_nibtool index c262a5288..c07fcfc1c 100755 --- a/bin/rb_nibtool +++ b/bin/rb_nibtool @@ -4,6 +4,7 @@ # # This file is covered by the Ruby license. # +# Copyright (C) 2012, The MacRuby Team # Copyright (C) 2008-2010, Apple Inc require 'optparse' diff --git a/bin/ruby_deploy b/bin/ruby_deploy index a9344ec37..d8b66431f 100644 --- a/bin/ruby_deploy +++ b/bin/ruby_deploy @@ -3,6 +3,7 @@ # # This file is covered by the Ruby license. # +# Copyright (C) 2012, The MacRuby Team # Copyright (C) 2009-2011, Apple Inc require 'optparse' diff --git a/bin/ruby_select b/bin/ruby_select index 063eaf239..57819f7e7 100755 --- a/bin/ruby_select +++ b/bin/ruby_select @@ -2,6 +2,7 @@ # # This file is covered by the Ruby license. # +# Copyright (C) 2012, The MacRuby Team # Copyright (C) 2009-2011, Apple Inc MACRUBY_FRAMEWORK = '/Library/Frameworks/MacRuby.framework' diff --git a/bin/rubyc b/bin/rubyc index cda6978cc..9fa160a83 100644 --- a/bin/rubyc +++ b/bin/rubyc @@ -3,6 +3,7 @@ # # This file is covered by the Ruby license. # +# Copyright (C) 2012, The MacRuby Team # Copyright (C) 2009-2011, Apple Inc require 'optparse' diff --git a/bin/rubyd b/bin/rubyd index 1734dfd8c..5c662ef74 100644 --- a/bin/rubyd +++ b/bin/rubyd @@ -3,6 +3,7 @@ # # This file is covered by the Ruby license. # +# Copyright (C) 2012, The MacRuby Team # Copyright (C) 2010-2011, Apple Inc require 'readline' diff --git a/bridgesupport.cpp b/bridgesupport.cpp index 032399699..27a76cdf3 100644 --- a/bridgesupport.cpp +++ b/bridgesupport.cpp @@ -3,6 +3,7 @@ * * This file is covered by the Ruby license. See COPYING for more details. * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2011, Apple Inc. All rights reserved. */ diff --git a/bridgesupport.h b/bridgesupport.h index 9fffb2468..0fb513c0c 100644 --- a/bridgesupport.h +++ b/bridgesupport.h @@ -2,7 +2,8 @@ * MacRuby BridgeSupport implementation. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2011, Apple Inc. All rights reserved. */ diff --git a/bs.c b/bs.c index 555b611bb..51b077003 100644 --- a/bs.c +++ b/bs.c @@ -1,4 +1,5 @@ -/* +/* + * Copyright (c) 2012, The MacRuby Team. All rights reserved. * Copyright (c) 2008-2011, Apple Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/bs.h b/bs.h index d36d5caba..2141939b6 100644 --- a/bs.h +++ b/bs.h @@ -1,4 +1,5 @@ -/* +/* + * Copyright (c) 2012, The MacRuby Team. All rights reserved. * Copyright (c) 2008-2011, Apple Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/class.c b/class.c index c248f5f2b..bff085945 100644 --- a/class.c +++ b/class.c @@ -1,8 +1,9 @@ -/* +/* * MacRuby implementation of Ruby 1.9's class.c. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. 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. diff --git a/class.h b/class.h index 9541e0429..d4f8fd450 100644 --- a/class.h +++ b/class.h @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2011, Apple Inc. All rights reserved. */ diff --git a/compar.c b/compar.c index 09ebe7772..9047c4fb2 100644 --- a/compar.c +++ b/compar.c @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2011, Apple Inc. All rights reserved. * Copyright (C) 1993-2007 Yukihiro Matsumoto */ diff --git a/compiler.cpp b/compiler.cpp index 25eb2570d..782fa5cdb 100644 --- a/compiler.cpp +++ b/compiler.cpp @@ -2,7 +2,8 @@ * MacRuby Compiler. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2008-2011, Apple Inc. All rights reserved. */ diff --git a/compiler.h b/compiler.h index ea4e76df9..8519ed381 100644 --- a/compiler.h +++ b/compiler.h @@ -2,7 +2,8 @@ * MacRuby Compiler. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2008-2011, Apple Inc. All rights reserved. */ diff --git a/complex.c b/complex.c index f35b5c48a..1e0689e8b 100644 --- a/complex.c +++ b/complex.c @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2009-2011, Apple Inc. All rights reserved. * Copyright (C) 2008-2009, Tadayoshi Funaba */ diff --git a/debugger.cpp b/debugger.cpp index 7859cd49d..7da28a056 100644 --- a/debugger.cpp +++ b/debugger.cpp @@ -2,7 +2,8 @@ * MacRuby debugger. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2010-2011, Apple Inc. All rights reserved. */ diff --git a/debugger.h b/debugger.h index afb85ec3e..15b6a424c 100644 --- a/debugger.h +++ b/debugger.h @@ -2,7 +2,8 @@ * MacRuby debugger. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2010-2011, Apple Inc. All rights reserved. */ diff --git a/dir.c b/dir.c index 7f2498f92..5898ff8bf 100644 --- a/dir.c +++ b/dir.c @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. 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. diff --git a/dispatcher.cpp b/dispatcher.cpp index 6e0f3b233..7f83fba72 100644 --- a/dispatcher.cpp +++ b/dispatcher.cpp @@ -2,7 +2,8 @@ * MacRuby Dispatcher. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2008-2011, Apple Inc. All rights reserved. */ diff --git a/dln.c b/dln.c index 8086c9630..06116c413 100644 --- a/dln.c +++ b/dln.c @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2011, Apple Inc. All rights reserved. * Copyright (C) 1993-2007 Yukihiro Matsumoto */ diff --git a/encoding.c b/encoding.c index ede5570a7..ace98c6a6 100644 --- a/encoding.c +++ b/encoding.c @@ -1,8 +1,9 @@ -/* +/* * MacRuby implementation of Ruby 1.9 String. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. 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. diff --git a/encoding.h b/encoding.h index 4c1d2665e..083d07731 100644 --- a/encoding.h +++ b/encoding.h @@ -1,8 +1,9 @@ -/* +/* * MacRuby implementation of Ruby 1.9 String. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. 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. diff --git a/encoding_ucnv.h b/encoding_ucnv.h index 776a80650..71918eb3b 100644 --- a/encoding_ucnv.h +++ b/encoding_ucnv.h @@ -1,8 +1,9 @@ -/* +/* * MacRuby implementation of Ruby 1.9 String. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. 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. diff --git a/enum.c b/enum.c index d06ebf0f5..8a67781a9 100644 --- a/enum.c +++ b/enum.c @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2011, Apple Inc. All rights reserved. * Copyright (C) 1993-2007 Yukihiro Matsumoto */ diff --git a/enumerator.c b/enumerator.c index 252a69e42..d1e77ec67 100644 --- a/enumerator.c +++ b/enumerator.c @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2011, Apple Inc. All rights reserved. * Copyright (C) 2001-2003 Akinori MUSHA */ diff --git a/env.c b/env.c index 7708be9c4..304044ea1 100644 --- a/env.c +++ b/env.c @@ -1,8 +1,9 @@ -/* +/* * MacRuby implementation of ENV. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. 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. diff --git a/error.c b/error.c index 89f19c0ac..9227eda9e 100644 --- a/error.c +++ b/error.c @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2011, Apple Inc. All rights reserved. * Copyright (C) 1993-2007 Yukihiro Matsumoto */ diff --git a/eval.c b/eval.c index 2cdad2bde..869bf1943 100644 --- a/eval.c +++ b/eval.c @@ -1,8 +1,9 @@ -/* +/* * MacRuby implementation of Ruby 1.9's eval.c. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. 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. diff --git a/eval_error.c b/eval_error.c index 88ecf1bc4..e1146d354 100644 --- a/eval_error.c +++ b/eval_error.c @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. 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. diff --git a/eval_jump.c b/eval_jump.c index a1515b282..695dbc3b3 100644 --- a/eval_jump.c +++ b/eval_jump.c @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. 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. diff --git a/eval_safe.c b/eval_safe.c index 629a2b008..fd2ccde0b 100644 --- a/eval_safe.c +++ b/eval_safe.c @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. 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. diff --git a/ext/libyaml/rubyext.c b/ext/libyaml/rubyext.c index b8ae3ca31..571ca110e 100644 --- a/ext/libyaml/rubyext.c +++ b/ext/libyaml/rubyext.c @@ -1,8 +1,9 @@ -/* +/* * MacRuby libYAML API. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2009-2010, Apple Inc. All rights reserved. */ diff --git a/ext/zlib/zlib.c b/ext/zlib/zlib.c index c2ed93956..81e087cb1 100644 --- a/ext/zlib/zlib.c +++ b/ext/zlib/zlib.c @@ -1,8 +1,9 @@ -/* +/* * MacRuby Zlib API. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2010, Apple Inc. All rights reserved. * Copyright (C) UENO Katsuhiro 2000-2003 */ diff --git a/file.c b/file.c index 311610f03..722c88455 100644 --- a/file.c +++ b/file.c @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. 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. diff --git a/gc-stub.m b/gc-stub.m index 059e70fa7..91f4de2e3 100644 --- a/gc-stub.m +++ b/gc-stub.m @@ -1,4 +1,5 @@ -/* +/* + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (c) 2008-2011, Apple Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/gc.c b/gc.c index fade5c35b..39a16bdf3 100644 --- a/gc.c +++ b/gc.c @@ -1,8 +1,9 @@ -/* +/* * MacRuby implementation of Ruby 1.9's gc.c. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. 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. diff --git a/gcd.c b/gcd.c index fd0c7b2b3..22849fab8 100644 --- a/gcd.c +++ b/gcd.c @@ -2,7 +2,8 @@ * MacRuby API for Grand Central Dispatch. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2009-2011, Apple Inc. All rights reserved. */ diff --git a/gcd.h b/gcd.h index fb7a4d7e1..aac3646b2 100644 --- a/gcd.h +++ b/gcd.h @@ -2,7 +2,8 @@ * MacRuby API for Grand Central Dispatch. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2009-2011, Apple Inc. All rights reserved. */ diff --git a/hash.c b/hash.c index 6401febdd..3878d1550 100644 --- a/hash.c +++ b/hash.c @@ -1,8 +1,9 @@ -/* +/* * MacRuby implementation of Ruby 1.9's hash.c. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. 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. diff --git a/hash.h b/hash.h index 2fafac79e..a37f4f343 100644 --- a/hash.h +++ b/hash.h @@ -1,6 +1,7 @@ -/* +/* * MacRuby Hash. * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2011, Apple Inc. All rights reserved. */ diff --git a/id.c b/id.c index 63ab92f50..eb6093668 100644 --- a/id.c +++ b/id.c @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2011, Apple Inc. All rights reserved. * Copyright (C) 2004-2007 Koichi Sasada */ diff --git a/id.h b/id.h index b98282bce..381bb8914 100644 --- a/id.h +++ b/id.h @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2011, Apple Inc. All rights reserved. * Copyright (C) 2007 Koichi Sasada */ diff --git a/include/MacRuby.h b/include/MacRuby.h index 545b50baa..592dca4c0 100644 --- a/include/MacRuby.h +++ b/include/MacRuby.h @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2010, Apple Inc. All rights reserved */ diff --git a/include/ruby.h b/include/ruby.h index 2927a47c1..da5b8a2a3 100644 --- a/include/ruby.h +++ b/include/ruby.h @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2010, Apple Inc. All rights reserved * Copyright (C) 2007-2008 Yukihiro Matsumoto */ diff --git a/include/ruby/defines.h b/include/ruby/defines.h index fd0c89233..1da8cad31 100644 --- a/include/ruby/defines.h +++ b/include/ruby/defines.h @@ -1,9 +1,10 @@ /* * This file is covered by the Ruby license. See COPYING for more details. * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2010, Apple Inc. All rights reserved * Copyright (C) 1993-2007 Yukihiro Matsumoto - */ + */ #ifndef RUBY_DEFINES_H #define RUBY_DEFINES_H 1 diff --git a/include/ruby/encoding.h b/include/ruby/encoding.h index 30b8eb34c..19ff991e8 100644 --- a/include/ruby/encoding.h +++ b/include/ruby/encoding.h @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2010, Apple Inc. All rights reserved * Copyright (C) 2007 Yukihiro Matsumoto */ diff --git a/include/ruby/intern.h b/include/ruby/intern.h index 6be2c6602..8c11097bb 100644 --- a/include/ruby/intern.h +++ b/include/ruby/intern.h @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2010, Apple Inc. All rights reserved * Copyright (C) 1993-2007 Yukihiro Matsumoto * Copyright (C) 2000 Network Applied Communication Laboratory, Inc. diff --git a/include/ruby/io.h b/include/ruby/io.h index 972e85360..074e7ad9c 100644 --- a/include/ruby/io.h +++ b/include/ruby/io.h @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2010, Apple Inc. All rights reserved * Copyright (C) 1993-2007 Yukihiro Matsumoto */ diff --git a/include/ruby/node.h b/include/ruby/node.h index f42e932bc..989e784d9 100644 --- a/include/ruby/node.h +++ b/include/ruby/node.h @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2010, Apple Inc. All rights reserved * Copyright (C) 1993-2007 Yukihiro Matsumoto */ diff --git a/include/ruby/objc.h b/include/ruby/objc.h index dee4f8368..45c49cb27 100644 --- a/include/ruby/objc.h +++ b/include/ruby/objc.h @@ -1,7 +1,8 @@ /* * This file is covered by the Ruby license. See COPYING for more details. * - * Copyright (C) 2007-2010, Apple Inc. All rights reserved + * Copyright (C) 2012, The MacRuby Team. All rights reserved. + * Copyright (C) 2007-2010, Apple Inc. All rights reserved */ #if __OBJC__ diff --git a/include/ruby/re.h b/include/ruby/re.h index f99e838c2..8bfab65a8 100644 --- a/include/ruby/re.h +++ b/include/ruby/re.h @@ -1,7 +1,8 @@ /* * This file is covered by the Ruby license. See COPYING for more details. * - * Copyright (C) 2007-2010, Apple Inc. All rights reserved + * Copyright (C) 2012, The MacRuby Team. All rights reserved. + * Copyright (C) 2007-2010, Apple Inc. All rights reserved * Copyright (C) 1993-2007 Yukihiro Matsumoto */ diff --git a/include/ruby/ruby.h b/include/ruby/ruby.h index dfdd4910c..d202bc4ec 100644 --- a/include/ruby/ruby.h +++ b/include/ruby/ruby.h @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2010, Apple Inc. All rights reserved * Copyright (C) 1993-2008 Yukihiro Matsumoto * Copyright (C) 2000 Network Applied Communication Laboratory, Inc. diff --git a/include/ruby/signal.h b/include/ruby/signal.h index dba63c73a..b49fab761 100644 --- a/include/ruby/signal.h +++ b/include/ruby/signal.h @@ -1,7 +1,8 @@ /* * This file is covered by the Ruby license. See COPYING for more details. * - * Copyright (C) 2007-2010, Apple Inc. All rights reserved + * Copyright (C) 2012, The MacRuby Team. All rights reserved. + * Copyright (C) 2007-2010, Apple Inc. All rights reserved * Copyright (C) 1993-2007 Yukihiro Matsumoto */ diff --git a/include/ruby/util.h b/include/ruby/util.h index 8708e4984..ea006bfee 100644 --- a/include/ruby/util.h +++ b/include/ruby/util.h @@ -1,7 +1,8 @@ /* * This file is covered by the Ruby license. See COPYING for more details. * - * Copyright (C) 2007-2010, Apple Inc. All rights reserved + * Copyright (C) 2012, The MacRuby Team. All rights reserved. + * Copyright (C) 2007-2010, Apple Inc. All rights reserved * Copyright (C) 1993-2007 Yukihiro Matsumoto */ diff --git a/include/rubyio.h b/include/rubyio.h index a19d90be2..6da769f0d 100644 --- a/include/rubyio.h +++ b/include/rubyio.h @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2010, Apple Inc. All rights reserved */ diff --git a/include/rubysig.h b/include/rubysig.h index d65518be7..632660b99 100644 --- a/include/rubysig.h +++ b/include/rubysig.h @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2010, Apple Inc. All rights reserved */ diff --git a/inits.c b/inits.c index b2c5bf286..0cc04adfa 100644 --- a/inits.c +++ b/inits.c @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2011, Apple Inc. All rights reserved. * Copyright (C) 1993-2007 Yukihiro Matsumoto */ diff --git a/interpreter.cpp b/interpreter.cpp index 72a96bec9..5516a7a44 100644 --- a/interpreter.cpp +++ b/interpreter.cpp @@ -2,7 +2,8 @@ * MacRuby Interpreter. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2008-2011, Apple Inc. All rights reserved. */ diff --git a/interpreter.h b/interpreter.h index 6aa19d2b6..e954564bd 100644 --- a/interpreter.h +++ b/interpreter.h @@ -2,7 +2,8 @@ * MacRuby Interpreter. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2008-2011, Apple Inc. All rights reserved. */ diff --git a/io.c b/io.c index 70c836f43..4cbd52a0e 100644 --- a/io.c +++ b/io.c @@ -1,8 +1,9 @@ -/* +/* * MacRuby implementation of Ruby 1.9's io.c. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. 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. diff --git a/kernel.c b/kernel.c index d9f0221c7..1b3f63729 100644 --- a/kernel.c +++ b/kernel.c @@ -4,7 +4,8 @@ * code MacRuby generates. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2011, Apple Inc. All rights reserved. */ diff --git a/lib/stringio.rb b/lib/stringio.rb index 45d544499..639efd23d 100644 --- a/lib/stringio.rb +++ b/lib/stringio.rb @@ -2,6 +2,7 @@ # # This file is covered by the Ruby license. See COPYING for more details. # +# Copyright (C) 2012, The MacRuby Team. All rights reserved. # Copyright (C) 2009-2011, Apple Inc. All rights reserved. class StringIO diff --git a/lib/strscan.rb b/lib/strscan.rb index 51890210c..b3ce35de0 100644 --- a/lib/strscan.rb +++ b/lib/strscan.rb @@ -2,6 +2,7 @@ # # This file is covered by the Ruby license. See COPYING for more details. # +# Copyright (C) 2012, The MacRuby Team. All rights reserved. # Copyright (C) 2009-2011, Apple Inc. All rights reserved. class ScanError < StandardError; end diff --git a/load.c b/load.c index b070a120a..b51c66b05 100644 --- a/load.c +++ b/load.c @@ -2,7 +2,8 @@ * MacRuby file loader. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2009-2011, Apple Inc. All rights reserved. */ diff --git a/macruby_internal.h b/macruby_internal.h index d088e9ea6..9f92f4019 100644 --- a/macruby_internal.h +++ b/macruby_internal.h @@ -1,7 +1,8 @@ /* * This file is covered by the Ruby license. See COPYING for more details. * - * Copyright (C) 2007-2011, Apple Inc. All rights reserved + * Copyright (C) 2012, The MacRuby Team. All rights reserved. + * Copyright (C) 2007-2011, Apple Inc. All rights reserved */ #ifndef __MACRUBY_INTERNAL_H diff --git a/main.cpp b/main.cpp index b82a7335a..8d8d75330 100644 --- a/main.cpp +++ b/main.cpp @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2011, Apple Inc. All rights reserved. * Copyright (C) 1993-2007 Yukihiro Matsumoto */ diff --git a/marshal.c b/marshal.c index b95736fc3..71dbfadc7 100644 --- a/marshal.c +++ b/marshal.c @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2011, Apple Inc. All rights reserved. * Copyright (C) 1993-2007 Yukihiro Matsumoto */ diff --git a/math.c b/math.c index a4f3a2225..5819f3247 100644 --- a/math.c +++ b/math.c @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2011, Apple Inc. All rights reserved. * Copyright (C) 1993-2007 Yukihiro Matsumoto */ diff --git a/numeric.c b/numeric.c index 384bf3d2c..126738a5f 100644 --- a/numeric.c +++ b/numeric.c @@ -3,6 +3,7 @@ * * This file is covered by the Ruby license. See COPYING for more details. * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2011, Apple Inc. All rights reserved. * Copyright (C) 1993-2007 Yukihiro Matsumoto */ diff --git a/objc.h b/objc.h index c605d0a8f..b93f15948 100644 --- a/objc.h +++ b/objc.h @@ -2,7 +2,8 @@ * MacRuby ObjC helpers. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2011, Apple Inc. All rights reserved. */ diff --git a/objc.m b/objc.m index a7b243b83..cb5466976 100644 --- a/objc.m +++ b/objc.m @@ -2,7 +2,8 @@ * MacRuby ObjC helpers. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2011, Apple Inc. All rights reserved. */ diff --git a/object.c b/object.c index 6d426f120..dd8d7c041 100644 --- a/object.c +++ b/object.c @@ -1,8 +1,9 @@ -/* +/* * MacRuby implementation of Ruby 1.9's object.c. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. 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. diff --git a/pack.c b/pack.c index 761a9105f..ff570d8fe 100644 --- a/pack.c +++ b/pack.c @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2011, Apple Inc. All rights reserved. * Copyright (C) 1993-2007 Yukihiro Matsumoto */ diff --git a/prec.c b/prec.c index 8bd13387e..f7c8286f5 100644 --- a/prec.c +++ b/prec.c @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2011, Apple Inc. All rights reserved. * Copyright (C) 1993-2007 Yukihiro Matsumoto */ diff --git a/proc.c b/proc.c index f1a7c7b9f..6dba375d6 100644 --- a/proc.c +++ b/proc.c @@ -1,8 +1,9 @@ -/* +/* * MacRuby implementation of Ruby 1.9's proc.c. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2011, Apple Inc. All rights reserved. * Copyright (C) 2004-2007 Koichi Sasada */ diff --git a/process.c b/process.c index 250b01c0f..f0c79b8d0 100644 --- a/process.c +++ b/process.c @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. 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. diff --git a/random.c b/random.c index 819903d9b..5c1b39f45 100644 --- a/random.c +++ b/random.c @@ -1,8 +1,9 @@ -/* +/* * Random Numbers. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2011, Apple Inc. All rights reserved. * Copyright (C) 1993-2007 Yukihiro Matsumoto */ diff --git a/range.c b/range.c index e5bf5cf24..321d26c5c 100644 --- a/range.c +++ b/range.c @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2011, Apple Inc. All rights reserved. * Copyright (C) 1993-2007 Yukihiro Matsumoto */ diff --git a/rational.c b/rational.c index 91d7925f5..64fe9eafd 100644 --- a/rational.c +++ b/rational.c @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2009-2011, Apple Inc. All rights reserved. * Copyright (C) 2008-2009, Tadayoshi Funaba */ diff --git a/re.c b/re.c index 6cdfe853a..bf31fba31 100644 --- a/re.c +++ b/re.c @@ -1,8 +1,9 @@ -/* +/* * MacRuby Regular Expressions. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2011, Apple Inc. All rights reserved. * Copyright (C) 1993-2007 Yukihiro Matsumoto */ diff --git a/re.h b/re.h index 5fbfc9b9e..4f2adc1d3 100644 --- a/re.h +++ b/re.h @@ -1,8 +1,9 @@ -/* +/* * MacRuby Regular Expressions. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2011, Apple Inc. All rights reserved. */ diff --git a/ruby.c b/ruby.c index 5c3d1099b..40c37edc0 100644 --- a/ruby.c +++ b/ruby.c @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. 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. diff --git a/sandbox.c b/sandbox.c index cb9e178e5..436983a49 100644 --- a/sandbox.c +++ b/sandbox.c @@ -1,8 +1,9 @@ -/* +/* * MacRuby interface to sandbox/seatbelt. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2011, Apple Inc. All rights reserved. */ diff --git a/signal.c b/signal.c index ab2bf96b1..0280131b8 100644 --- a/signal.c +++ b/signal.c @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. 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. diff --git a/sprintf.c b/sprintf.c index 4fb6a7223..556555b68 100644 --- a/sprintf.c +++ b/sprintf.c @@ -3,6 +3,7 @@ * * This file is covered by the Ruby license. See COPYING for more details. * + * Copyright (C) 2012, The MacRuby Team. 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. diff --git a/string.c b/string.c index fe625330d..e5e082d5f 100644 --- a/string.c +++ b/string.c @@ -3,6 +3,7 @@ * * This file is covered by the Ruby license. See COPYING for more details. * + * Copyright (C) 2012, The MacRuby Team. 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. diff --git a/struct.c b/struct.c index c49c3a406..ecf7e3344 100644 --- a/struct.c +++ b/struct.c @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2011, Apple Inc. All rights reserved. * Copyright (C) 1993-2007 Yukihiro Matsumoto */ diff --git a/symbol.c b/symbol.c index d1c4d6043..376860460 100644 --- a/symbol.c +++ b/symbol.c @@ -1,8 +1,9 @@ -/* +/* * MacRuby Symbols. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2010-2011, Apple Inc. All rights reserved. */ diff --git a/symbol.h b/symbol.h index 7b388b5ac..b2bd8b340 100644 --- a/symbol.h +++ b/symbol.h @@ -1,8 +1,9 @@ -/* +/* * MacRuby Symbols. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2010-2011, Apple Inc. All rights reserved. */ diff --git a/thread.c b/thread.c index 4366a41bd..aee8b740a 100644 --- a/thread.c +++ b/thread.c @@ -1,8 +1,9 @@ -/* +/* * MacRuby implementation of Thread. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2009-2011, Apple Inc. All rights reserved. * Copyright (C) 2004-2007 Koichi Sasada */ diff --git a/time.c b/time.c index e4602d2af..86f028f07 100644 --- a/time.c +++ b/time.c @@ -1,8 +1,9 @@ -/* +/* * MacRuby implementation of Ruby 1.9's time.c * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2011, Apple Inc. All rights reserved. * Copyright (C) 1993-2007 Yukihiro Matsumoto */ diff --git a/transcode.c b/transcode.c index f3f5b1e1e..f50b21eb7 100644 --- a/transcode.c +++ b/transcode.c @@ -1,8 +1,9 @@ -/* +/* * MacRuby implementation of transcode.c. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. 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. diff --git a/ucnv.c b/ucnv.c index 647330282..6e82e4429 100644 --- a/ucnv.c +++ b/ucnv.c @@ -1,8 +1,9 @@ -/* +/* * MacRuby implementation of Ruby 1.9 String. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. 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. diff --git a/variable.c b/variable.c index 0c13eb91b..b55946a2a 100644 --- a/variable.c +++ b/variable.c @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. 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. diff --git a/version.c b/version.c index df5f56eb6..623e4a872 100644 --- a/version.c +++ b/version.c @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2011, Apple Inc. All rights reserved. * Copyright (C) 1993-2007 Yukihiro Matsumoto */ diff --git a/version.h b/version.h index c449d9bb6..214617bb5 100644 --- a/version.h +++ b/version.h @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2011, Apple Inc. All rights reserved. * Copyright (C) 1993-2007 Yukihiro Matsumoto */ @@ -31,8 +32,8 @@ RUBY_EXTERN const char ruby_description[]; RUBY_EXTERN const char ruby_copyright[]; #endif -#define RUBY_AUTHOR "Apple Inc." -#define RUBY_BIRTH_YEAR 2007 +#define RUBY_AUTHOR "The MacRuby Team" +#define RUBY_BIRTH_YEAR 2012 #ifndef RUBY_REVISION # define RUBY_REVISION 0 diff --git a/vm.cpp b/vm.cpp index 58e7382d8..b844cab7f 100644 --- a/vm.cpp +++ b/vm.cpp @@ -2,7 +2,8 @@ * MacRuby VM. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2008-2011, Apple Inc. All rights reserved. */ diff --git a/vm.h b/vm.h index 21cb849dc..6127eead9 100644 --- a/vm.h +++ b/vm.h @@ -2,7 +2,8 @@ * MacRuby VM. * * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2008-2011, Apple Inc. All rights reserved. */ diff --git a/vm_eval.c b/vm_eval.c index c1a0d9e99..43a9084ad 100644 --- a/vm_eval.c +++ b/vm_eval.c @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. 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. diff --git a/vm_method.c b/vm_method.c index 614b97b53..4b682f96e 100644 --- a/vm_method.c +++ b/vm_method.c @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. - * + * + * Copyright (C) 2012, The MacRuby Team. 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. @@ -756,4 +757,3 @@ Init_eval_method(void) undefined = rb_intern("method_undefined"); singleton_undefined = rb_intern("singleton_method_undefined"); } - From 9e52cc34934b920f87b08d2612c2bb4876c04808 Mon Sep 17 00:00:00 2001 From: Mark Rada Date: Mon, 23 Apr 2012 21:48:04 -0400 Subject: [PATCH 2/2] Add a 2012 copyright notice to parse.y --- parse.y | 1 + 1 file changed, 1 insertion(+) diff --git a/parse.y b/parse.y index b3ee1990b..1eaf4473b 100644 --- a/parse.y +++ b/parse.y @@ -1,6 +1,7 @@ /* * This file is covered by the Ruby license. See COPYING for more details. * + * Copyright (C) 2012, The MacRuby Team. All rights reserved. * Copyright (C) 2007-2010, Apple Inc. All rights reserved. * Copyright (C) 1993-2007 Yukihiro Matsumoto */