X-Recipient: archive-cygwin@delorie.com
DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id
	:list-unsubscribe:list-subscribe:list-archive:list-post
	:list-help:sender:reply-to:from:subject:to:message-id:date
	:mime-version:content-type:content-transfer-encoding; q=dns; s=
	default; b=lxQtVWaL9+54GorxWqEp6iBFP7QmNjGMeWAPYldMN7feRilu2pO19
	ahXDHWi5zswJbfNNXrTKZckw7gdCHkDzlP6bJP94IGkNDT6diEbar2jGnO2oMvJs
	XlPBgjNpypYfLRu9a2hSLCAs275l6FJA3EYOe4zHG4ZWACCGP3pS5Y=
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id
	:list-unsubscribe:list-subscribe:list-archive:list-post
	:list-help:sender:reply-to:from:subject:to:message-id:date
	:mime-version:content-type:content-transfer-encoding; s=default;
	 bh=nyNxKNVIruHKz/fBecaGZUQ8vM4=; b=dYHFeTZHNfwYp7ZRJmMazc8NmfJn
	A0b+Maqsf/C0GQtVAC1xkXnORLT0/qCldm0L10WRLbCZQwnRJVh58ocHgUq6Aurk
	yDkpd4zosF79yVmgx2ZO4HLTBDdYwYbVjbYWbrbWoVcmqYChSjmAGZYpkbsPEiWI
	9kbA1s7eliALBkw=
Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm
List-Id: <cygwin.cygwin.com>
List-Subscribe: <mailto:cygwin-subscribe@cygwin.com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin@cygwin.com>
List-Help: <mailto:cygwin-help@cygwin.com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
Delivered-To: mailing list cygwin@cygwin.com
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: localhost.localdomain
Reply-To: cygwin@cygwin.com
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=1.8 required=5.0 tests=BAYES_50,KAM_LAZY_DOMAIN_SECURITY,SPF_HELO_PASS autolearn=no version=3.3.2 spammy=H*MI:cygwin, H*M:cygwin, bugfix, gem
From: Yaakov Selkowitz <yselkowitz@cygwin.com>
Subject: [ANNOUNCEMENT] Ruby on Rails 4.2.5.2
To: cygwin@cygwin.com
Message-Id: <announce.56DBCC5B.1030603@cygwin.com>
Date: Sun, 6 Mar 2016 00:21:15 -0600
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.6.0
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8; format=flowed
Content-Transfer-Encoding: 7bit
X-IsSubscribed: yes

The following packages have been updated in the Cygwin distribution:

* ruby-actionmailer-4.2.5.2-1
* ruby-actionpack-4.2.5.2-1
* ruby-actionview-4.2.5.2-1
* ruby-activejob-4.2.5.2-1
* ruby-activemodel-4.2.5.2-1
* ruby-activerecord-4.2.5.2-1
* ruby-activesupport-4.2.5.2-1
* ruby-arel-6.0.3-1
* ruby-coffee-rails-4.1.1-1
* ruby-coffee-script-source-1.10.0-1
* ruby-globalid-0.3.6-1
* ruby-jquery-rails-4.0.5-1
* ruby-listen-3.0.6-1
* ruby-loofah-2.0.3-1
* ruby-mime-types-2.6.2-1
* ruby-nokogiri-1.6.7.2-1
* ruby-rack-1.6.4-1
* ruby-rails-4.2.5.2-1
* ruby-rails-dom-testing-1.0.7-1
* ruby-rails-html-sanitizer-1.0.3-1
* ruby-railties-4.2.5.2-1
* ruby-sass-3.4.21-1
* ruby-sass-rails-5.0.4-1
* ruby-sprockets-3.4.1-1
* ruby-sprockets-rails-2.3.3-1
* ruby-web-console-2.3.0-1

Rails is a web application development framework written in the Ruby
language. It is designed to make programming web applications easier by
making assumptions about what every developer needs to get started. It
allows you to write less code while accomplishing more than many other
languages and frameworks.

This is an update to the latest upstream bugfix release, with several 
security fixes:

http://weblog.rubyonrails.org/2016/1/25/Rails-5-0-0-beta1-1-4-2-5-1-4-1-14-1-3-2-22-1-and-rails-html-sanitizer-1-0-3-have-been-released/
http://weblog.rubyonrails.org/2016/2/29/Rails-4-2-5-2-4-1-14-2-3-2-22-2-have-been-released/

Installing the 'ruby-rails' package and its dependencies should provide
the gems required for an application in the default configuration;
optional dependencies also available (as listed above) need to be
selected separately for installation.

Because of how gem dependencies work, in order to assure that you use
these versions, the following steps must be followed when creating a new
Rails application:

      $ rails new testapp1 --skip-bundle
      (files are installed)
      $ cd testapp1
      $ bundle install --local
      (this will show that existing gems are being used)
      $ rails server
      (then point browser to http://localhost:3000/, or install 
rails-unicorn and...)
      $ unicorn_rails
      (then point browser to http://localhost:8080/)

And to upgrade existing apps to this version of Rails:

      $ $EDITOR Gemfile
      (and update the gem 'rails' and other version numbers as needed)
      $ bundle update --local
      (Existing gems should be found and used.)
      $ rake rails:update
      (and follow the prompts to update files)

Please note that if you do not use the --local flags as indicated above,
then other versions of these gems may end up being installed, which will
likely break things either then or down the road.

--
Yaakov

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

