-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4d3244b
commit 1cf1f74
Showing
1,984 changed files
with
257,382 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.
18 changes: 18 additions & 0 deletions
18
bundler/ruby/3.2.0/extensions/x64-mingw-ucrt/3.2.0/nio4r-2.7.4/gem_make.out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.