public inbox for cygwin-announce@cygwin.com
 help / color / mirror / Atom feed
From: Yaakov Selkowitz <yselkowitz@cygwin.com>
To: cygwin-announce <cygwin-announce@cygwin.com>
Subject: Ruby on Rails 5.1.6
Date: Thu, 02 May 2019 03:58:00 -0000	[thread overview]
Message-ID: <498d2f162b319b8b4fb3d947ba1c329454ddfe6b.camel@cygwin.com> (raw)

The following packages have been uploaded to the Cygwin distribution:

* ruby-actioncable-5.1.6-1
* ruby-actioncable-doc-5.1.6-1
* ruby-actionmailer-5.1.6-1
* ruby-actionmailer-doc-5.1.6-1
* ruby-actionpack-5.1.6-1
* ruby-actionpack-doc-5.1.6-1
* ruby-actionview-5.1.6-1
* ruby-actionview-doc-5.1.6-1
* ruby-activejob-5.1.6-1
* ruby-activejob-doc-5.1.6-1
* ruby-activemodel-5.1.6-1
* ruby-activemodel-doc-5.1.6-1
* ruby-activerecord-5.1.6-1
* ruby-activerecord-doc-5.1.6-1
* ruby-activesupport-5.1.6-1
* ruby-activesupport-doc-5.1.6-1
* ruby-bcrypt-3.1.12-1
* ruby-bcrypt-doc-3.1.12-1
* ruby-bindex-0.5.0-1
* ruby-bindex-doc-0.5.0-1
* ruby-binding_of_caller-0.8.0-1
* ruby-binding_of_caller-doc-0.8.0-1
* ruby-byebug-11.0.1-1
* ruby-byebug-doc-11.0.1-1
* ruby-debug_inspector-0.0.3-2
* ruby-debug_inspector-doc-0.0.3-2
* ruby-erubi-1.7.1-1
* ruby-erubi-doc-1.7.1-1
* ruby-globalid-0.4.1-1
* ruby-globalid-doc-0.4.1-1
* ruby-i18n-0.9.5-1
* ruby-i18n-doc-0.9.5-1
* ruby-jbuilder-2.7.0-1
* ruby-jbuilder-doc-2.7.0-1
* ruby-jquery-rails-4.3.3-1
* ruby-jquery-rails-doc-4.3.3-1
* ruby-kgio-2.11.2-1
* ruby-kgio-doc-2.11.2-1
* ruby-listen-3.0.8-1
* ruby-listen-doc-3.0.8-1
* ruby-loofah-2.2.2-1
* ruby-loofah-doc-2.2.2-1
* ruby-method_source-0.9.2-1
* ruby-method_source-doc-0.9.2-1
* ruby-multi_json-1.13.1-1
* ruby-multi_json-doc-1.13.1-1
* ruby-mysql2-0.5.2-1
* ruby-mysql2-doc-0.5.2-1
* ruby-nio4r-2.3.1-1
* ruby-nio4r-doc-2.3.1-1
* ruby-nokogiri-1.10.3-1
* ruby-nokogiri-doc-1.10.3-1
* ruby-oj-3.7.12-1
* ruby-oj-doc-3.7.12-1
* ruby-pg-1.1.4-1
* ruby-pg-doc-1.1.4-1
* ruby-puma-3.11.4-1
* ruby-puma-doc-3.11.4-1
* ruby-rack-2.0.6-1
* ruby-rack-test-0.8.3-1
* ruby-rack-test-doc-0.8.3-1
* ruby-rack-doc-2.0.6-1
* ruby-rails-5.1.6-1
* ruby-rails-doc-5.1.6-1
* ruby-rails-html-sanitizer-1.0.4-1
* ruby-rails-html-sanitizer-doc-1.0.4-1
* ruby-railties-5.1.6-1
* ruby-railties-doc-5.1.6-1
* ruby-raindrops-0.19.0-2
* ruby-raindrops-doc-0.19.0-2
* ruby-sass-3.5.6-1
* ruby-sass-listen-4.0.0-1
* ruby-sass-listen-doc-4.0.0-1
* ruby-sass-rails-5.0.7-1
* ruby-sass-rails-doc-5.0.7-1
* ruby-sass-doc-3.5.6-1
* ruby-sqlite3-1.3.13-2
* ruby-sqlite3-doc-1.3.13-2
* ruby-thor-0.20.3-1
* ruby-thor-doc-0.20.3-1
* ruby-turbolinks-5.2.0-1
* ruby-turbolinks-source-5.2.0-1
* ruby-turbolinks-source-doc-5.2.0-1
* ruby-turbolinks-doc-5.2.0-1
* ruby-tzinfo-1.2.5-1
* ruby-tzinfo-doc-1.2.5-1
* ruby-unicorn-5.4.1-1
* ruby-unicorn-doc-5.4.1-1
* ruby-web-console-3.6.2-1
* ruby-web-console-doc-3.6.2-1
* ruby-websocket-driver-0.6.5-2
* ruby-websocket-driver-doc-0.6.5-2
* ruby-websocket-extensions-0.1.3-1
* ruby-websocket-extensions-doc-0.1.3-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 and rebuild for Ruby 2.6.

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.)
     $ rails app: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


                 reply	other threads:[~2019-05-02  3:58 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=498d2f162b319b8b4fb3d947ba1c329454ddfe6b.camel@cygwin.com \
    --to=yselkowitz@cygwin.com \
    --cc=cygwin-announce@cygwin.com \
    --cc=cygwin@cygwin.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).