Skip to content

Commit 0b48fd9

Browse files
committed
RuboCop.
1 parent dc54ccd commit 0b48fd9

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

examples/proxy/application.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Released under the MIT License.
55
# Copyright, 2024, by Samuel Williams.
66

7-
require 'async/http/client'
7+
require "async/http/client"
88

99
class Application
1010
# The endpoint we will proxy requests to:

examples/sinatra/app.rb

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
#!/usr/bin/env ruby
2+
# frozen_string_literal: true
23

34
# To run this example, you need to install the `sinatra` gem:
45
# $ bundle install
56
# $ bundle exec ./app.rb
67

7-
require 'sinatra/base'
8+
require "sinatra/base"
89

910
class Server < Sinatra::Application
1011
set :server, :falcon
1112

1213
# Hello World:
13-
get '/' do
14+
get "/" do
1415
"Hello, World!"
1516
end
1617
end

0 commit comments

Comments
 (0)