Skip to content

Commit

Permalink
deploy: aec5b47
Browse files Browse the repository at this point in the history
  • Loading branch information
chrodriguez committed Sep 23, 2024
1 parent bb3e5a2 commit aade1c7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2732,7 +2732,7 @@
```ruby
require 'open-uri'
web_page = open("https://www.ruby-lang.org/en/documentation/")
web_page = URI.open("https://www.ruby-lang.org/en/documentation/")
output = File.open("ruby.html", "w")
while line = web_page.gets
output.puts line
Expand All @@ -2751,7 +2751,7 @@
page = "unlp"
file_name = "#{page}.html"
web_page = open("https://www.ruby-lang.org/en/#{page}")
web_page = URI.open("https://www.ruby-lang.org/en/#{page}")
output = File.open(file_name, "w")
begin
while line = web_page.gets
Expand Down
4 changes: 2 additions & 2 deletions start.html
Original file line number Diff line number Diff line change
Expand Up @@ -2732,7 +2732,7 @@
```ruby
require 'open-uri'
web_page = open("https://www.ruby-lang.org/en/documentation/")
web_page = URI.open("https://www.ruby-lang.org/en/documentation/")
output = File.open("ruby.html", "w")
while line = web_page.gets
output.puts line
Expand All @@ -2751,7 +2751,7 @@
page = "unlp"
file_name = "#{page}.html"
web_page = open("https://www.ruby-lang.org/en/#{page}")
web_page = URI.open("https://www.ruby-lang.org/en/#{page}")
output = File.open(file_name, "w")
begin
while line = web_page.gets
Expand Down

0 comments on commit aade1c7

Please sign in to comment.