[macruby-changes] [4681] DietRB/trunk
source_changes at macosforge.org
source_changes at macosforge.org
Fri Oct 8 03:58:55 PDT 2010
Revision: 4681
http://trac.macosforge.org/projects/ruby/changeset/4681
Author: eloy.de.enige at gmail.com
Date: 2010-10-08 03:58:54 -0700 (Fri, 08 Oct 2010)
Log Message:
-----------
Release 0.4.0 with history and colorize support.
From: Eloy Duran <eloy.de.enige at gmail.com>
Modified Paths:
--------------
DietRB/trunk/LICENSE
DietRB/trunk/Rakefile
DietRB/trunk/TODO
DietRB/trunk/VERSION
DietRB/trunk/dietrb.gemspec
DietRB/trunk/lib/irb/ext/colorize.rb
DietRB/trunk/lib/irb/ext/history.rb
Modified: DietRB/trunk/LICENSE
===================================================================
--- DietRB/trunk/LICENSE 2010-10-08 10:58:42 UTC (rev 4680)
+++ DietRB/trunk/LICENSE 2010-10-08 10:58:54 UTC (rev 4681)
@@ -1,3 +1,8 @@
Copyright (c) <2010> Eloy Duran, <eloy.de.enige at gmail.com>
+Portions Copyright (c) 2006-2010 Ben Bleything (history utils)
+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)
+
This software is available under the Ruby license.
\ No newline at end of file
Modified: DietRB/trunk/Rakefile
===================================================================
--- DietRB/trunk/Rakefile 2010-10-08 10:58:42 UTC (rev 4680)
+++ DietRB/trunk/Rakefile 2010-10-08 10:58:54 UTC (rev 4681)
@@ -26,6 +26,7 @@
gemspec.authors = ["Eloy Duran"]
gemspec.required_ruby_version = ::Gem::Requirement.new("~> 1.9")
+ gemspec.files.reject! { |file| file =~ /^extensions/ }
end
rescue LoadError
end
\ No newline at end of file
Modified: DietRB/trunk/TODO
===================================================================
--- DietRB/trunk/TODO 2010-10-08 10:58:42 UTC (rev 4680)
+++ DietRB/trunk/TODO 2010-10-08 10:58:54 UTC (rev 4681)
@@ -3,5 +3,5 @@
* Make sure the following formatters work: hirb, awesome_print, and looksee
* Make sure the majority of the utils in utility_belt work
* Possibly add copy-paste support as an ext
-* Make sure ported/used code is attributed
+* Make sure ported/used code is attributed and contact authors about Ruby license
* Decide whether or not we need more control for colorizing which could be done with Ripper::SexpBuilder
\ No newline at end of file
Modified: DietRB/trunk/VERSION
===================================================================
--- DietRB/trunk/VERSION 2010-10-08 10:58:42 UTC (rev 4680)
+++ DietRB/trunk/VERSION 2010-10-08 10:58:54 UTC (rev 4681)
@@ -1 +1 @@
-0.3.0
\ No newline at end of file
+0.4.0
\ No newline at end of file
Modified: DietRB/trunk/dietrb.gemspec
===================================================================
--- DietRB/trunk/dietrb.gemspec 2010-10-08 10:58:42 UTC (rev 4680)
+++ DietRB/trunk/dietrb.gemspec 2010-10-08 10:58:54 UTC (rev 4681)
@@ -5,37 +5,42 @@
Gem::Specification.new do |s|
s.name = %q{dietrb}
- s.version = "0.3.0"
+ s.version = "0.4.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Eloy Duran"]
- s.date = %q{2010-02-24}
+ s.date = %q{2010-04-18}
s.default_executable = %q{dietrb}
s.description = %q{IRB on a diet, for MacRuby / Ruby 1.9}
s.email = %q{eloy.de.enige at gmail.com}
s.executables = ["dietrb"]
s.extra_rdoc_files = [
"LICENSE",
- "README.rdoc"
+ "README.rdoc",
+ "TODO"
]
s.files = [
".gitignore",
"LICENSE",
"README.rdoc",
"Rakefile",
+ "TODO",
"VERSION",
"bin/dietrb",
"dietrb.gemspec",
"lib/irb.rb",
"lib/irb/context.rb",
+ "lib/irb/ext/colorize.rb",
"lib/irb/ext/completion.rb",
+ "lib/irb/ext/history.rb",
"lib/irb/ext/macruby.rb",
"lib/irb/formatter.rb",
"lib/irb/source.rb",
+ "spec/colorize_spec.rb",
"spec/completion_spec.rb",
"spec/context_spec.rb",
"spec/formatter_spec.rb",
- "spec/irb_spec.rb",
+ "spec/history_spec.rb",
"spec/source_spec.rb",
"spec/spec_helper.rb"
]
@@ -46,10 +51,11 @@
s.rubygems_version = %q{1.3.5}
s.summary = %q{IRB on a diet, for MacRuby / Ruby 1.9}
s.test_files = [
- "spec/completion_spec.rb",
+ "spec/colorize_spec.rb",
+ "spec/completion_spec.rb",
"spec/context_spec.rb",
"spec/formatter_spec.rb",
- "spec/irb_spec.rb",
+ "spec/history_spec.rb",
"spec/source_spec.rb",
"spec/spec_helper.rb"
]
Modified: DietRB/trunk/lib/irb/ext/colorize.rb
===================================================================
--- DietRB/trunk/lib/irb/ext/colorize.rb 2010-10-08 10:58:42 UTC (rev 4680)
+++ DietRB/trunk/lib/irb/ext/colorize.rb 2010-10-08 10:58:54 UTC (rev 4681)
@@ -1,4 +1,6 @@
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/history.rb
===================================================================
--- DietRB/trunk/lib/irb/ext/history.rb 2010-10-08 10:58:42 UTC (rev 4680)
+++ DietRB/trunk/lib/irb/ext/history.rb 2010-10-08 10:58:54 UTC (rev 4681)
@@ -1,4 +1,6 @@
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
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macruby-changes/attachments/20101008/e18c5e70/attachment.html>
More information about the macruby-changes
mailing list