-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Corrects Style/StringLiterals and Style/StringLiteralsInInterpolation…
… offenses Sets the EnforcedStyle to `double_quotes` because this makes much more sense than the default. See rubocop/rubocop#5306
- Loading branch information
1 parent
1b26c8e
commit 654bb94
Showing
35 changed files
with
293 additions
and
303 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
source 'https://rubygems.org' | ||
source "https://rubygems.org" | ||
|
||
# Specify your gem's dependencies in message_bus.gemspec | ||
gemspec | ||
|
||
group :test do | ||
gem 'minitest' | ||
gem 'minitest-hooks' | ||
gem 'rake' | ||
gem 'http_parser.rb' | ||
gem 'thin' | ||
gem 'rack-test', require: 'rack/test' | ||
gem 'jasmine' | ||
gem "minitest" | ||
gem "minitest-hooks" | ||
gem "rake" | ||
gem "http_parser.rb" | ||
gem "thin" | ||
gem "rack-test", require: "rack/test" | ||
gem "jasmine" | ||
end | ||
|
||
gem 'rack' | ||
gem 'concurrent-ruby' # for distributed-cache | ||
gem "rack" | ||
gem "concurrent-ruby" # for distributed-cache | ||
|
||
gem 'rubocop' | ||
gem 'yard' | ||
gem "rubocop" | ||
gem "yard" |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
require 'message_bus' | ||
require "message_bus" | ||
on_worker_boot do | ||
MessageBus.after_fork | ||
end |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
require 'message_bus' | ||
require "message_bus" | ||
after_fork do |_server, _worker| | ||
MessageBus.after_fork | ||
end |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
gem 'puma' | ||
gem 'redis' | ||
gem 'sinatra' | ||
gem "puma" | ||
gem "redis" | ||
gem "sinatra" |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
require './chat' | ||
require "./chat" | ||
run Chat |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
source 'https://rubygems.org' | ||
source "https://rubygems.org" | ||
|
||
gem 'message_bus' | ||
gem "message_bus" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
require 'message_bus' | ||
require "message_bus" | ||
|
||
# MessageBus.long_polling_interval = 1000 * 2 | ||
|
||
|
This file contains 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
Oops, something went wrong.