X-Git-Url: http://git.sourceforge.jp/view?p=shogi-server%2Fshogi-server.git;a=blobdiff_plain;f=mk_rate;h=62529916beab1ccd75b62ddab0dc800bcb14eb73;hp=3678b452a037fde6195ea7c486abe213c8ff3e56;hb=645812fa344a3456acc7fee42731cccc8c946686;hpb=7a9b8f6315c13501a9936d89e66d93499c9e610b diff --git a/mk_rate b/mk_rate index 3678b45..6252991 100755 --- a/mk_rate +++ b/mk_rate @@ -1,11 +1,11 @@ -#!/usr/bin/ruby +#!/usr/bin/ruby1.9.1 # $Id$ # # Author:: Daigo Moriwaki # Homepage:: http://sourceforge.jp/projects/shogi-server/ # #-- -# Copyright (C) 2006-2009 Daigo Moriwaki +# Copyright (C) 2006-2012 Daigo Moriwaki # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -70,21 +70,17 @@ # # Sample Command lines that isntall prerequires will work on Debian. # -# * Ruby 1.8.7 +# * Ruby 1.9.3 or 1.8.7 (including Rubygems) # -# $ sudo aptitude install ruby1.8 -# -# * Rubygems -# -# $ sudo aptitude install rubygems +# $ sudo aptitude install ruby1.9.1 # # * Ruby bindings for the GNU Scientific Library (GSL[http://rb-gsl.rubyforge.org/]) # -# $ sudo aptitude install libgsl-ruby1.8 +# $ sudo aptitude install ruby-gsl # # * RGL: {Ruby Graph Library}[http://rubyforge.org/projects/rgl/] # -# $ sudo gem install rgl +# $ sudo gem1.9.1 install rgl # # == Examples # @@ -108,8 +104,8 @@ require 'yaml' require 'time' require 'getoptlong' -require 'gsl' require 'rubygems' +require 'gsl' require 'rgl/adjacency' require 'rgl/connected_components'