X-Recipient: archive-cygwin AT delorie DOT 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:message-id:subject:from:to:date :content-type:mime-version:content-transfer-encoding; q=dns; s= default; b=EocOVdAr/mSkfKHXV7wDLh99xwExYRzmm5Rkj1uazfga37SoBQKOD UrswwgKvTo+fON8+jz7JO/InTnzInnRGEggYQzmTn+aO36OUKUJ7+imwj69k3S+f N44tBdsdJVCXAsq3lo8ZfR5xPaJiZ0CsPnagBBEMVkzFoNTTHFszhs= 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:message-id:subject:from:to:date :content-type:mime-version:content-transfer-encoding; s=default; bh=iW8F0uvoABs3iZ/z0r56n9Estl0=; b=SsX+R04a9rb9+KgWfTaekwbqn4cJ /6Hl1dvu27qUqNiOCkSr/PJKphFZViMZRqLTtmiArSvASxYWVTesXZotFzNLnXXb /rtcpPSbL62F4/5M/Ty9cAo/u3saF4roVXzEmFQYgYrJyFHLe6iqAo+EyI7ca17W YS7OPDxnLMTbh40= Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-HELO: localhost.localdomain Reply-To: cygwin AT cygwin DOT com Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.2 required=5.0 tests=AWL,BAYES_05,KAM_LAZY_DOMAIN_SECURITY,SPF_HELO_PASS autolearn=no version=3.3.2 Message-Id: Subject: [ANNOUNCEMENT] Updated: Ruby on Rails 4.2.4 From: Yaakov Selkowitz To: cygwin AT cygwin DOT com Date: Thu, 27 Aug 2015 17:30:31 -0500 Content-Type: text/plain; charset="UTF-8" Mime-Version: 1.0 Content-Transfer-Encoding: 7bit X-IsSubscribed: yes The following packages have been updated in the Cygwin distribution: * ruby-actionmailer-4.2.4-1 * ruby-actionpack-4.2.4-1 * ruby-actionview-4.2.4-1 * ruby-activejob-4.2.4-1 * ruby-activemodel-4.2.4-1 * ruby-activerecord-4.2.4-1 * ruby-activesupport-4.2.4-1 * ruby-rails-4.2.4-1 * ruby-railties-4.2.4-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: http://weblog.rubyonrails.org/2015/8/24/Rails-4-2-4-and-4-1-13-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