Skip to content

Commit

Permalink
rails update to 7.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rifrifqyqy committed Nov 3, 2024
1 parent 4d3244b commit 1cf1f74
Show file tree
Hide file tree
Showing 1,984 changed files with 257,382 additions and 0 deletions.
Binary file added bundler/ruby/3.2.0/cache/actioncable-7.2.2.gem
Binary file not shown.
Binary file added bundler/ruby/3.2.0/cache/actionmailbox-7.2.2.gem
Binary file not shown.
Binary file added bundler/ruby/3.2.0/cache/actionmailer-7.2.2.gem
Binary file not shown.
Binary file added bundler/ruby/3.2.0/cache/actionpack-7.2.2.gem
Binary file not shown.
Binary file added bundler/ruby/3.2.0/cache/actiontext-7.2.2.gem
Binary file not shown.
Binary file added bundler/ruby/3.2.0/cache/actionview-7.2.2.gem
Binary file not shown.
Binary file added bundler/ruby/3.2.0/cache/activejob-7.2.2.gem
Binary file not shown.
Binary file added bundler/ruby/3.2.0/cache/activemodel-7.2.2.gem
Binary file not shown.
Binary file added bundler/ruby/3.2.0/cache/activerecord-7.2.2.gem
Binary file not shown.
Binary file not shown.
Binary file added bundler/ruby/3.2.0/cache/activesupport-7.2.2.gem
Binary file not shown.
Binary file added bundler/ruby/3.2.0/cache/benchmark-0.3.0.gem
Binary file not shown.
Binary file added bundler/ruby/3.2.0/cache/net-imap-0.5.0.gem
Binary file not shown.
Binary file added bundler/ruby/3.2.0/cache/nio4r-2.7.4.gem
Binary file not shown.
Binary file added bundler/ruby/3.2.0/cache/rack-3.1.8.gem
Binary file not shown.
Binary file added bundler/ruby/3.2.0/cache/rails-7.2.2.gem
Binary file not shown.
Binary file added bundler/ruby/3.2.0/cache/railties-7.2.2.gem
Binary file not shown.
Binary file added bundler/ruby/3.2.0/cache/zeitwerk-2.7.1.gem
Binary file not shown.
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
current directory: D:/RQ/Kuliah/UNPAS/Server/course_app/bundler/ruby/3.2.0/gems/nio4r-2.7.4/ext/nio4r
C:/Ruby32-x64/bin/ruby.exe extconf.rb

current directory: D:/RQ/Kuliah/UNPAS/Server/course_app/bundler/ruby/3.2.0/gems/nio4r-2.7.4/ext/nio4r
make DESTDIR\= sitearchdir\=./.gem.20241103-61320-f3jqlt sitelibdir\=./.gem.20241103-61320-f3jqlt clean
make: *** No rule to make target 'clean'. Stop.

current directory: D:/RQ/Kuliah/UNPAS/Server/course_app/bundler/ruby/3.2.0/gems/nio4r-2.7.4/ext/nio4r
make DESTDIR\= sitearchdir\=./.gem.20241103-61320-f3jqlt sitelibdir\=./.gem.20241103-61320-f3jqlt
make: Nothing to be done for 'all'.

current directory: D:/RQ/Kuliah/UNPAS/Server/course_app/bundler/ruby/3.2.0/gems/nio4r-2.7.4/ext/nio4r
make DESTDIR\= sitearchdir\=./.gem.20241103-61320-f3jqlt sitelibdir\=./.gem.20241103-61320-f3jqlt install
make: Nothing to be done for 'install'.

current directory: D:/RQ/Kuliah/UNPAS/Server/course_app/bundler/ruby/3.2.0/gems/nio4r-2.7.4/ext/nio4r
make DESTDIR\= sitearchdir\=./.gem.20241103-61320-f3jqlt sitelibdir\=./.gem.20241103-61320-f3jqlt clean
make: *** No rule to make target 'clean'. Stop.
63 changes: 63 additions & 0 deletions bundler/ruby/3.2.0/gems/actioncable-7.2.2/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
## Rails 7.2.2 (October 30, 2024) ##

* No changes.


## Rails 7.2.1.2 (October 23, 2024) ##

* No changes.


## Rails 7.2.1.1 (October 15, 2024) ##

* No changes.


## Rails 7.2.1 (August 22, 2024) ##

* No changes.


## Rails 7.2.0 (August 09, 2024) ##

* Bring `ActionCable::Connection::TestCookieJar` in alignment with `ActionDispatch::Cookies::CookieJar` in regards to setting the cookie value.

Before:

```ruby
cookies[:foo] = { value: "bar" }
puts cookies[:foo] # => { value: "bar" }
```

After:

```ruby
cookies[:foo] = { value: "bar" }
puts cookies[:foo] # => "bar"
```

*Justin Ko*

* Record ping on every Action Cable message.

Previously only `ping` and `welcome` message types were keeping the connection active.
Now every Action Cable message updates the `pingedAt` value, preventing the connection
from being marked as stale.

*yauhenininjia*

* Add two new assertion methods for Action Cable test cases: `assert_has_no_stream`
and `assert_has_no_stream_for`.

These methods can be used to assert that a stream has been stopped, e.g. via
`stop_stream` or `stop_stream_for`. They complement the already existing
`assert_has_stream` and `assert_has_stream_for` methods.

```ruby
assert_has_no_stream "messages"
assert_has_no_stream_for User.find(42)
```

*Sebastian Pöll*, *Junichi Sato*

Please check [7-1-stable](https://github.com/rails/rails/blob/7-1-stable/actioncable/CHANGELOG.md) for previous changes.
20 changes: 20 additions & 0 deletions bundler/ruby/3.2.0/gems/actioncable-7.2.2/MIT-LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Copyright (c) 37signals LLC

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 changes: 24 additions & 0 deletions bundler/ruby/3.2.0/gems/actioncable-7.2.2/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Action Cable – Integrated WebSockets for \Rails

Action Cable seamlessly integrates WebSockets with the rest of your \Rails application.
It allows for real-time features to be written in Ruby in the same style
and form as the rest of your \Rails application, while still being performant
and scalable. It's a full-stack offering that provides both a client-side
JavaScript framework and a server-side Ruby framework. You have access to your full
domain model written with Active Record or your ORM of choice.

You can read more about Action Cable in the [Action Cable Overview](https://guides.rubyonrails.org/action_cable_overview.html) guide.

## Support

API documentation is at:

* https://api.rubyonrails.org

Bug reports for the Ruby on \Rails project can be filed here:

* https://github.com/rails/rails/issues

Feature requests should be discussed on the rails-core mailing list here:

* https://discuss.rubyonrails.org/c/rubyonrails-core
Loading

0 comments on commit 1cf1f74

Please sign in to comment.