- 2024/11/07にRails8.0リリースされましたね
- Ruby on Rails 8.0 Release Notes — Ruby on Rails Guides にリリースノートが書かれている
- リリースノートには特にメジャーフィーチャーは書かれていないけど Ruby on Rails — Rails 8.0: No PaaS Required の方に書かれているkamal2やTrusterなどがメジャーフィーチャー扱いっぽい
- 上記のメジャーフィーチャー以外で気になった箇所をざっくりまとめたものです
- 現時点(2024/08/30)でRails7.2.1がリリースされています
- Ruby on Rails 7.2 Release Notes — Ruby on Rails Guides にメジャーフィーチャーが書かれている
- マイナーフィーチャーはよくわからないので、個人的に気になったマイナーフィーチャをまとめています
This file contains hidden or 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
str = '\u534a\u89d2\u82f1\u6570\u5b57' | |
str.gsub(/\\u([\da-fA-F]{4})/) { [$1].pack('H*').unpack('n*').pack('U*') } # => 半角英数字 |
This file contains hidden or 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
group :production do | |
gem 'unicorn' | |
# Enable gzip compression on heroku, but don't compress images. | |
gem 'heroku-deflater' | |
# Heroku injects it if it's not in there already | |
gem 'rails_12factor' | |
end |
This file contains hidden or 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
i386 : iPhone Simulator | |
x86_64 : iPhone Simulator | |
arm64 : iPhone Simulator | |
iPhone1,1 : iPhone | |
iPhone1,2 : iPhone 3G | |
iPhone2,1 : iPhone 3GS | |
iPhone3,1 : iPhone 4 | |
iPhone3,2 : iPhone 4 GSM Rev A | |
iPhone3,3 : iPhone 4 CDMA | |
iPhone4,1 : iPhone 4S |