From ftsm2006 at yahoo.com Thu Apr 19 13:17:13 2012 From: ftsm2006 at yahoo.com (michelle hiong) Date: Thu, 19 Apr 2012 06:17:13 -0700 (PDT) Subject: running ruby Message-ID: <1334841433.29474.YahooMailClassic@web113206.mail.gq1.yahoo.com> Hi List, I m new to ruby and have actually downloaded, installed rubyinstaller-1.9.3-p125 for Windows.I have some sample ruby files, how to test run the files with the installed ruby? Thanks. Michelle From hgs at dmu.ac.uk Thu Apr 19 14:05:22 2012 From: hgs at dmu.ac.uk (Hugh Sasse) Date: Thu, 19 Apr 2012 15:05:22 +0100 (BST) Subject: running ruby In-Reply-To: <1334841433.29474.YahooMailClassic@web113206.mail.gq1.yahoo.com> References: <1334841433.29474.YahooMailClassic@web113206.mail.gq1.yahoo.com> Message-ID: You are on the wrong list for that particular question, but you should see them as icons with ruby on them, or you can run them from a command prompt with ruby something.rb or ruby something.rbw You may even be able to do something.rb from the command line. This list is for people writing code for the rubygems part of ruby, which you will encounter soon. You probably want to be on Ruby-Talk for general ruby questions. http://www.ruby-lang.org/en/community/mailing-lists/ HTH Hugh On Thu, 19 Apr 2012, michelle hiong wrote: > Hi List, > > I m new to ruby and have actually downloaded, installed rubyinstaller-1.9.3-p125 for Windows.I have some sample ruby files, how to test run the files with the installed ruby? > > Thanks. > > Michelle > From evan at phx.io Sat Apr 21 20:57:13 2012 From: evan at phx.io (Evan Phoenix) Date: Sat, 21 Apr 2012 13:57:13 -0700 Subject: [ANN] rubygems-update 1.8.23 Released Message-ID: rubygems-update version 1.8.23 has been released! * * * * * RubyGems is a package management framework for Ruby. This gem is an update for the RubyGems software. You must have an installation of RubyGems before this update can be applied. See Gem for information on RubyGems (or `ri Gem`) To upgrade to the latest RubyGems, run: $ gem update --system # you might need to be an administrator or root See UPGRADING.rdoc for more details and alternative instructions. ----- If you don't have RubyGems installed, your can still do it manually: * Download from: https://rubygems.org/pages/download * Unpack into a directory and cd there * Install with: ruby setup.rb # you may need admin/root privilege For more details and other options, see: ruby setup.rb --help Changes: ### 1.8.23 / 2012-04-19 This release increases the security used when RubyGems is talking to an https server. If you use a custom RubyGems server over SSL, this release will cause RubyGems to no longer connect unless your SSL cert is globally valid. You can configure SSL certificate usage in RubyGems through the :ssl_ca_cert and :ssl_verify_mode options in ~/.gemrc and /etc/gemrc. The recommended way is to set :ssl_ca_cert to the CA certificate for your server or a certificate bundle containing your CA certification. You may also set :ssl_verify_mode to 0 to completely disable SSL certificate checks, but this is not recommended. * 2 security fixes: * Disallow redirects from https to http * Turn on verification of server SSL certs * 1 minor feature: * Add --clear-sources to fetch * 2 bug fixes: * Use File.identical? to check if two files are the same. * Fixed init_with warning when using psych -- Evan Phoenix // evan at phx.io From evan at phx.io Fri Apr 27 23:36:04 2012 From: evan at phx.io (Evan Phoenix) Date: Fri, 27 Apr 2012 16:36:04 -0700 Subject: [ANN] rubygems-update 1.8.24 Released Message-ID: rubygems-update version 1.8.24 has been released! * * * * * RubyGems is a package management framework for Ruby. This gem is an update for the RubyGems software. You must have an installation of RubyGems before this update can be applied. See Gem for information on RubyGems (or `ri Gem`) To upgrade to the latest RubyGems, run: $ gem update --system # you might need to be an administrator or root See UPGRADING.rdoc for more details and alternative instructions. ----- If you don't have RubyGems installed, your can still do it manually: * Download from: https://rubygems.org/pages/download * Unpack into a directory and cd there * Install with: ruby setup.rb # you may need admin/root privilege For more details and other options, see: ruby setup.rb --help Changes: ### 1.8.24 / 2012-04-27 * 1 bug fix: * Install the .pem files properly. Fixes #320 * Remove OpenSSL dependency from the http code path -- Evan Phoenix // evan at phx.io