From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3673 invoked by alias); 2 Jun 2015 19:40:10 -0000 Mailing-List: contact cygwin-apps-help@cygwin.com; run by ezmlm Precedence: bulk Sender: cygwin-apps-owner@cygwin.com List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Mail-Followup-To: cygwin-apps@cygwin.com Received: (qmail 3663 invoked by uid 89); 2 Jun 2015 19:40:09 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=0.3 required=5.0 tests=AWL,BAYES_50,KAM_LAZY_DOMAIN_SECURITY,SPF_HELO_PASS autolearn=no version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Tue, 02 Jun 2015 19:40:08 +0000 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) by mx1.redhat.com (Postfix) with ESMTPS id 7EAE5AE5C4 for ; Tue, 2 Jun 2015 19:40:07 +0000 (UTC) Received: from YAAKOV04.redhat.com ([10.10.116.18]) by int-mx14.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t52Je574012329 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Tue, 2 Jun 2015 15:40:07 -0400 Message-ID: <1433274004.8324.38.camel@cygwin.com> Subject: Updated: Ruby on Rails 4.2.1 From: Yaakov Selkowitz To: "cygwin-apps@cygwin.com" Date: Tue, 02 Jun 2015 19:40:00 -0000 Content-Type: text/plain; charset="UTF-8" Mime-Version: 1.0 Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2015-06/txt/msg00023.txt.bz2 The following packages have been updated in the Cygwin distribution: * ruby-actionmailer-4.2.1-1 * ruby-actionpack-4.2.1-1 * ruby-actionview-4.2.1-1 * ruby-activejob-4.2.1-1 * ruby-activemodel-4.2.1-1 * ruby-activerecord-4.2.1-1 * ruby-activerecord-deprecated_finders-1.0.4-1 * ruby-activesupport-4.2.1-1 * ruby-arel-6.0.0-1 * ruby-binding_of_caller-0.7.2-1 * ruby-builder-3.2.2-1 * ruby-bundler-1.9.9-2 * ruby-byebug-4.0.5-1 * ruby-celluloid-0.16.0-1 * ruby-coffee-rails-4.1.0-1 * ruby-coffee-script-2.4.1-1 * ruby-coffee-script-source-1.9.1.1-1 * ruby-columnize-0.9.0-1 * ruby-debug_inspector-0.0.2-1 * ruby-execjs-2.5.2-1 * ruby-globalid-0.3.5-1 * ruby-hitimes-1.2.2-1 * ruby-i18n-0.7.0-1 * ruby-jbuilder-2.2.16-1 * ruby-jquery-rails-4.0.3-1 * ruby-kgio-2.9.3-1 * ruby-listen-2.10.0-1 * ruby-loofah-2.0.2-1 * ruby-mail-2.6.3-1 * ruby-mime-types-2.6.1-1 * ruby-minitest5-5.6.1-1 * ruby-molinillo-0.2.3-1 * ruby-multi_json-1.11.0-1 * ruby-mysql2-0.3.18-1 * ruby-nokogiri-1.6.6.2-1 * ruby-oj-2.18.8-1 * ruby-pg-0.18.2-1 * ruby-rack-1.6.1-1 * ruby-rack-test-0.6.3-1 * ruby-rails-4.2.1-1 * ruby-rails-deprecated_sanitizer-1.0.3-1 * ruby-rails-dom-testing-1.0.6-1 * ruby-rails-html-sanitizer-1.0.2-1 * ruby-railties-4.2.1-1 * ruby-raindrops-0.13.0-2 * ruby-sass-3.4.14-1 * ruby-sass-rails-5.0.3-1 * ruby-sprockets-3.1.0-1 * ruby-sprockets-rails-2.3.1-1 * ruby-sqlite3-1.3.10-2 * ruby-thread_safe-0.3.5-1 * ruby-timers-4.0.1-1 * ruby-tzinfo-1.2.2-1 * ruby-uglifier-2.7.1-1 * ruby-unicorn-4.9.0-1 * ruby-web-console-2.1.2-1 * ruby-yajl-1.2.1-2 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. These releases represent the latest upstream release of Rails. Please review the release notes for details: http://edgeguides.rubyonrails.org/4_1_release_notes.html http://edgeguides.rubyonrails.org/4_2_release_notes.html 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) Further code changes may also be required as explained in: http://guides.rubyonrails.org/upgrading_ruby_on_rails.html 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