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=Vfz49ovvNTUKTng0O1gXnIZ106OH36Om7tBZJVlvTCeD+C9L9ZFOG Utv3fe5nLVJze1ogqM6OYhiUhC/cRgONs2W/y0dq1rLNW/o/U/bba3xGVm8Ww24G HYP1hk1kxtCzDzzPWmFNjEaMlKdIEC7OkV7w9ecmyHY6wIyz5LOajw= 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=SIYgzdLY9UMpyGUM2xPquPdTtrQ=; b=Lk1xRY5ncgRWBnXcwo9rhJhBZuoP w2ryoEMQcMkEG/CjT2MeCiS7L60kOzIbDPCAHUn8gFscChXFsq+kiTkSftnRnbMd E2RXCpEOuNONMeCwqt981tBRj0x8Egc7O3DrNAX6X4CU7iBTlWTG3ifU28pybHJy WY9WMvKNVwM7+DU= 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.3 required=5.0 tests=AWL,BAYES_50,KAM_LAZY_DOMAIN_SECURITY,SPF_HELO_PASS autolearn=no version=3.3.2 Message-Id: Subject: [ANNOUNCEMENT] Updated: Ruby on Rails 4.2.1 From: Yaakov Selkowitz To: cygwin AT cygwin DOT com Date: Tue, 02 Jun 2015 14:41:05 -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.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 -- 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