Skip to content

Commit

Permalink
style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
stek29 committed Mar 7, 2024
1 parent cde3a3b commit ef2b824
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Formula/futurerestore.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Futurerestore < Formula
livecheck do
url :homepage
strategy :page_match
regex(%r{(\d+) Commits}im)
regex(/(\d+) Commits/im)
end

bottle do
Expand Down
2 changes: 1 addition & 1 deletion Formula/img4tool.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Img4tool < Formula
livecheck do
url :homepage
strategy :page_match
regex(%r{(\d+) Commits}im)
regex(/(\d+) Commits/im)
end

bottle do
Expand Down
2 changes: 1 addition & 1 deletion Formula/libfragmentzip.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Libfragmentzip < Formula
livecheck do
url :homepage
strategy :page_match
regex(%r{(\d+) Commits}im)
regex(/(\d+) Commits/im)
end

bottle do
Expand Down
2 changes: 1 addition & 1 deletion Formula/libinsn.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Libinsn < Formula
livecheck do
url :homepage
strategy :page_match
regex(%r{(\d+) Commits}im)
regex(/(\d+) Commits/im)
end

bottle do
Expand Down
2 changes: 1 addition & 1 deletion Formula/libipatcher.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class Libipatcher < Formula
livecheck do
url :homepage
strategy :page_match
regex(%r{(\d+) Commits}im)
regex(/(\d+) Commits/im)
end

bottle do
Expand Down
2 changes: 1 addition & 1 deletion Formula/liboffsetfinder64.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class Liboffsetfinder64 < Formula
livecheck do
url :homepage
strategy :page_match
regex(%r{(\d+) Commits}im)
regex(/(\d+) Commits/im)
end

bottle do
Expand Down
2 changes: 1 addition & 1 deletion Formula/libtihmstar-general.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class LibtihmstarGeneral < Formula
livecheck do
url :homepage
strategy :page_match
regex(%r{(\d+) Commits}im)
regex(/(\d+) Commits/im)
end

bottle do
Expand Down
2 changes: 1 addition & 1 deletion Formula/partial-zip.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class PartialZip < Formula

livecheck do
url :url
regex(%r{(\d+) Commits}im)
regex(/(\d+) Commits/im)
strategy :page_match do |page|
v = page.match(regex)&.captures&.first
"0.#{v}" if v
Expand Down
2 changes: 1 addition & 1 deletion Formula/partialzipbrowser.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Partialzipbrowser < Formula
livecheck do
url :homepage
strategy :page_match
regex(%r{(\d+) Commits}im)
regex(/(\d+) Commits/im)
end

bottle do
Expand Down
2 changes: 1 addition & 1 deletion Formula/tsschecker.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Tsschecker < Formula
livecheck do
url :homepage
strategy :page_match
regex(%r{(\d+) Commits}im)
regex(/(\d+) Commits/im)
end

bottle do
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Homebrew tap with various \*OS related tools
- [libfragmentzip]( https://github.com/tihmstar/libfragmentzip )
- [libideviceactivation]( https://www.libimobiledevice.org/ )
- [libimobiledevice]( https://github.com/libimobiledevice/libimobiledevice )
- [libinsn]( https://github.com/tihmstar/libinsn )
- [libinsn]( https://github.com/tihmstar/libinsn )
- [libipatcher]( https://github.com/Cryptiiiic/libipatcher ) - Cryptiiiic's fork
- [libirecovery]( https://github.com/libimobiledevice/libirecovery )
- [liboffsetfinder64]( https://github.com/Cryptiiiic/liboffsetfinder64 ) - Cryptiiiic's fork
Expand Down

0 comments on commit ef2b824

Please sign in to comment.