From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 37318 invoked by alias); 26 Sep 2017 20:09:32 -0000 Mailing-List: contact cygwin-announce-help@cygwin.com; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-announce-owner@cygwin.com Reply-To: The Cygwin Mailing List Mail-Followup-To: cygwin-announce@cygwin.com Received: (qmail 36340 invoked by uid 89); 26 Sep 2017 20:07:55 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.9 required=5.0 tests=BAYES_00,KAM_LAZY_DOMAIN_SECURITY,SPF_HELO_PASS autolearn=no version=3.3.2 spammy=H*MI:cygwin, H*M:cygwin, gem, editor X-HELO: mx1.redhat.com DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com E84E6C057FA7 Authentication-Results: ext-mx08.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=cygwin.com Authentication-Results: ext-mx08.extmail.prod.ext.phx2.redhat.com; spf=none smtp.mailfrom=yselkowitz@cygwin.com DKIM-Filter: OpenDKIM Filter v2.11.0 mx1.redhat.com E84E6C057FA7 From: Yaakov Selkowitz Subject: Ruby on Rails 5.1.4 To: cygwin-announce@cygwin.com Message-ID: <5615be6c-72cb-6ef8-82ea-5812a9093346@cygwin.com> Date: Tue, 26 Sep 2017 20:09:00 -0000 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.3.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-SW-Source: 2017-09/txt/msg00085.txt.bz2 The following packages have been uploaded to the Cygwin distribution: * ruby-actioncable-5.1.4-1 * ruby-actionmailer-5.1.4-1 * ruby-actionpack-5.1.4-1 * ruby-actionview-5.1.4-1 * ruby-activejob-5.1.4-1 * ruby-activemodel-5.1.4-1 * ruby-activerecord-5.1.4-1 * ruby-activesupport-5.1.4-1 * ruby-arel-8.0.0-1 * ruby-builder-3.2.3-1 * ruby-bundler-1.15.4-1 * ruby-coffee-rails-4.2.2-1 * ruby-concurrent-ruby-1.0.5-1 * ruby-debug_inspector-0.0.3-1 * ruby-erubi-1.6.1-1 * ruby-i18n-0.8.6-1 * ruby-jbuilder-2.6.4-1 * ruby-jquery-rails-4.3.1-1 * ruby-kgio-2.11.0-1 * ruby-mail-2.6.6-1 * ruby-method_source-0.8.2-1 * ruby-mime-types-3.1-1 * ruby-mime-types-data-3.2016.0521-1 * ruby-multi_json-1.12.2-1 * ruby-mysql2-0.4.9-1 * ruby-nio4r-2.1.0-1 * ruby-nokogiri-1.8.0-1 * ruby-pg-0.21.0-1 * ruby-puma-3.10.0-1 * ruby-rack-2.0.3-1 * ruby-rack-cache-1.7.1-1 * ruby-rails-5.1.4-1 * ruby-rails-dom-testing-2.0.3-1 * ruby-railties-5.1.4-1 * ruby-raindrops-0.19.0-1 * ruby-sass-3.4.25-1 * ruby-sass-rails-5.0.6-1 * ruby-sdoc-0.4.2-1 * ruby-sprockets-3.7.1-1 * ruby-sprockets-rails-3.2.1-1 * ruby-tilt-2.0.8-1 * ruby-turbolinks-5.0.1-1 * ruby-turbolinks-source-5.0.3-1 * ruby-tzinfo-1.2.3-1 * ruby-uglifier-3.1.13-1 * ruby-unicorn-5.3.0-1 * ruby-web-console-3.3.1-1 * ruby-websocket-driver-0.6.5-1 * ruby-websocket-extensions-0.1.2-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 releases: http://edgeguides.rubyonrails.org/5_0_release_notes.html http://edgeguides.rubyonrails.org/5_1_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 ruby-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