Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ Layout/IndentationConsistency:
Layout/BlockAlignment:
Enabled: true

Layout/EmptyLineAfterMagicComment:
Enabled: true

Layout/EndAlignment:
Enabled: true
EnforcedStyleAlignWith: start_of_line
Expand Down
1 change: 1 addition & 0 deletions examples/streaming/config.ru
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# frozen_string_literal: true

require "xrb/template"
TEMPLATE = XRB::Template.load(<<~'HTML')
<!DOCTYPE html><html><head><title>99 bottles of beer</title></head><body>
Expand Down
2 changes: 2 additions & 0 deletions examples/supervisor/bake.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

def leak(size: 1024*1024)
require "async/http/internet/instance"

Expand Down
2 changes: 2 additions & 0 deletions examples/unicorn/gems.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

source "https://rubygems.org"

gem "unicorn", "~> 6.1"
Expand Down
Loading