[macruby-changes] [4691] DietRB/trunk/lib

source_changes at macosforge.org source_changes at macosforge.org
Fri Oct 8 04:00:21 PDT 2010


Revision: 4691
          http://trac.macosforge.org/projects/ruby/changeset/4691
Author:   eloy.de.enige at gmail.com
Date:     2010-10-08 04:00:20 -0700 (Fri, 08 Oct 2010)
Log Message:
-----------
Add license details to top of each file as in the MacRuby repo, this way I don't have to think about it next time.

From: Eloy Duran <eloy.de.enige at gmail.com>

Modified Paths:
--------------
    DietRB/trunk/lib/irb/context.rb
    DietRB/trunk/lib/irb/ext/colorize.rb
    DietRB/trunk/lib/irb/ext/completion.rb
    DietRB/trunk/lib/irb/ext/history.rb
    DietRB/trunk/lib/irb/ext/macruby.rb
    DietRB/trunk/lib/irb/formatter.rb
    DietRB/trunk/lib/irb/source.rb
    DietRB/trunk/lib/irb/version.rb
    DietRB/trunk/lib/irb.rb

Modified: DietRB/trunk/lib/irb/context.rb
===================================================================
--- DietRB/trunk/lib/irb/context.rb	2010-10-08 11:00:07 UTC (rev 4690)
+++ DietRB/trunk/lib/irb/context.rb	2010-10-08 11:00:20 UTC (rev 4691)
@@ -1,3 +1,9 @@
+# MacRuby implementation of IRB.
+#
+# This file is covered by the Ruby license. See COPYING for more details.
+# 
+# Copyright (C) 2009-2010, Eloy Duran <eloy.de.enige at gmail.com>
+
 require 'irb/formatter'
 require 'readline'
 

Modified: DietRB/trunk/lib/irb/ext/colorize.rb
===================================================================
--- DietRB/trunk/lib/irb/ext/colorize.rb	2010-10-08 11:00:07 UTC (rev 4690)
+++ DietRB/trunk/lib/irb/ext/colorize.rb	2010-10-08 11:00:20 UTC (rev 4691)
@@ -1,6 +1,14 @@
+# MacRuby implementation of IRB.
+#
+# This file is covered by the Ruby license. See COPYING for more details.
+# 
+# Copyright (C) 2009-2010, Eloy Duran <eloy.de.enige at gmail.com>
+#
+# Portions Copyright (C) 2006-2010 Paul Duncan <pabs at pablotron.org> (Wirble)
+# Portions Copyright (C) 2009-2010 Jens Wille <jens.wille at gmail.com> (Wirble)
+# Portions Copyright (C) 2006-2010 Giles Bowkett (light background color scheme)
+
 module IRB
-  # This code is based upon Wirble (http://pablotron.org/software/wirble/) by
-  # Paul Duncan and Jens Wille.
   class ColoredFormatter < Formatter
     TYPE_ALIASES = {
       :on_comma           => :comma,

Modified: DietRB/trunk/lib/irb/ext/completion.rb
===================================================================
--- DietRB/trunk/lib/irb/ext/completion.rb	2010-10-08 11:00:07 UTC (rev 4690)
+++ DietRB/trunk/lib/irb/ext/completion.rb	2010-10-08 11:00:20 UTC (rev 4691)
@@ -1,3 +1,9 @@
+# MacRuby implementation of IRB.
+#
+# This file is covered by the Ruby license. See COPYING for more details.
+# 
+# Copyright (C) 2009-2010, Eloy Duran <eloy.de.enige at gmail.com>
+
 require 'ripper'
 
 module IRB

Modified: DietRB/trunk/lib/irb/ext/history.rb
===================================================================
--- DietRB/trunk/lib/irb/ext/history.rb	2010-10-08 11:00:07 UTC (rev 4690)
+++ DietRB/trunk/lib/irb/ext/history.rb	2010-10-08 11:00:20 UTC (rev 4691)
@@ -1,6 +1,12 @@
+# MacRuby implementation of IRB.
+#
+# This file is covered by the Ruby license. See COPYING for more details.
+# 
+# Copyright (C) 2009-2010, Eloy Duran <eloy.de.enige at gmail.com>
+#
+# Portions Copyright (C) 2006-2010 Ben Bleything <ben at bleything.net> (Kernel#history & Kernel#history!)
+
 module IRB
-  # The util methods, history and history!, were taken from Ben Bleything's
-  # command_history.rb in utility_belt.
   class History
     class << self
       attr_accessor :file, :max_entries_in_overview

Modified: DietRB/trunk/lib/irb/ext/macruby.rb
===================================================================
--- DietRB/trunk/lib/irb/ext/macruby.rb	2010-10-08 11:00:07 UTC (rev 4690)
+++ DietRB/trunk/lib/irb/ext/macruby.rb	2010-10-08 11:00:20 UTC (rev 4691)
@@ -1,3 +1,9 @@
+# MacRuby implementation of IRB.
+#
+# This file is covered by the Ruby license. See COPYING for more details.
+# 
+# Copyright (C) 2009-2010, Eloy Duran <eloy.de.enige at gmail.com>
+
 framework 'AppKit'
 
 module IRB

Modified: DietRB/trunk/lib/irb/formatter.rb
===================================================================
--- DietRB/trunk/lib/irb/formatter.rb	2010-10-08 11:00:07 UTC (rev 4690)
+++ DietRB/trunk/lib/irb/formatter.rb	2010-10-08 11:00:20 UTC (rev 4691)
@@ -1,3 +1,9 @@
+# MacRuby implementation of IRB.
+#
+# This file is covered by the Ruby license. See COPYING for more details.
+# 
+# Copyright (C) 2009-2010, Eloy Duran <eloy.de.enige at gmail.com>
+
 module IRB
   class << self
     attr_accessor :formatter

Modified: DietRB/trunk/lib/irb/source.rb
===================================================================
--- DietRB/trunk/lib/irb/source.rb	2010-10-08 11:00:07 UTC (rev 4690)
+++ DietRB/trunk/lib/irb/source.rb	2010-10-08 11:00:20 UTC (rev 4691)
@@ -1,3 +1,9 @@
+# MacRuby implementation of IRB.
+#
+# This file is covered by the Ruby license. See COPYING for more details.
+# 
+# Copyright (C) 2009-2010, Eloy Duran <eloy.de.enige at gmail.com>
+
 require 'ripper'
 
 module IRB

Modified: DietRB/trunk/lib/irb/version.rb
===================================================================
--- DietRB/trunk/lib/irb/version.rb	2010-10-08 11:00:07 UTC (rev 4690)
+++ DietRB/trunk/lib/irb/version.rb	2010-10-08 11:00:20 UTC (rev 4691)
@@ -1,3 +1,9 @@
+# MacRuby implementation of IRB.
+#
+# This file is covered by the Ruby license. See COPYING for more details.
+# 
+# Copyright (C) 2009-2010, Eloy Duran <eloy.de.enige at gmail.com>
+
 module IRB
   module VERSION #:nodoc:
     MAJOR = 0

Modified: DietRB/trunk/lib/irb.rb
===================================================================
--- DietRB/trunk/lib/irb.rb	2010-10-08 11:00:07 UTC (rev 4690)
+++ DietRB/trunk/lib/irb.rb	2010-10-08 11:00:20 UTC (rev 4691)
@@ -1,3 +1,9 @@
+# MacRuby implementation of IRB.
+#
+# This file is covered by the Ruby license. See COPYING for more details.
+# 
+# Copyright (C) 2009-2010, Eloy Duran <eloy.de.enige at gmail.com>
+
 require 'irb/context'
 require 'irb/source'
 require 'irb/version'
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macruby-changes/attachments/20101008/2dfabfe0/attachment.html>


More information about the macruby-changes mailing list