[BioRuby-cvs] bioruby/bin bioruby,1.3,1.4

Katayama Toshiaki k at pub.open-bio.org
Sat Nov 5 03:33:55 EST 2005


Update of /home/repository/bioruby/bioruby/bin
In directory pub.open-bio.org:/tmp/cvs-serv29853/bin

Modified Files:
	bioruby 
Log Message:
* converted to RDoc
* opening, closing methods are renamed to open and close


Index: bioruby
===================================================================
RCS file: /home/repository/bioruby/bioruby/bin/bioruby,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** bioruby	27 Oct 2005 11:55:58 -0000	1.3
--- bioruby	5 Nov 2005 08:33:53 -0000	1.4
***************
*** 1,7 ****
  #!/usr/bin/env ruby
  #
! #  BioRuby shell - command line interface for the BioRuby library
  #
! #   Copyright (C) 2005 KATAYAMA Toshiaki <k at bioruby.org>
  #
  #  This library is free software; you can redistribute it and/or
--- 1,13 ----
  #!/usr/bin/env ruby
  #
! # = BioRuby shell - command line interface for the BioRuby library
  #
! # Copyright::	Copyright (C) 2005
! #		Toshiaki Katayama <k at bioruby.org>
! # Lisence::	LGPL
! #
! # $Id$
! #
! #--
  #
  #  This library is free software; you can redistribute it and/or
***************
*** 19,26 ****
  #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
  #
! #  $Id$
  #
  
! $: << File.dirname(__FILE__)+'/../lib'
  
  require 'bio/shell'
--- 25,38 ----
  #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
  #
! #++
  #
  
! # $: << File.dirname(__FILE__)+'/../lib'
! 
! begin
!   require 'rubygems'
!   require_gem 'bio', '~> 0.7'
! rescue LoadError
! end
  
  require 'bio/shell'
***************
*** 80,84 ****
  
  # loading workspace and command history
! Bio::Shell.opening
  
  Signal.trap("SIGINT") do
--- 92,96 ----
  
  # loading workspace and command history
! Bio::Shell.open
  
  Signal.trap("SIGINT") do
***************
*** 91,93 ****
  
  # saving workspace, command history and configuration before exit
! Bio::Shell.closing
--- 103,105 ----
  
  # saving workspace, command history and configuration before exit
! Bio::Shell.close



More information about the bioruby-cvs mailing list