Skip to content

Commit db87c4b

Browse files
committed
Fix standard
1 parent 37cb9de commit db87c4b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bigrails-redis.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
1717
spec.metadata["source_code_uri"] = "https://github.com/BigRails/bigrails-redis"
1818
spec.metadata["changelog_uri"] = "https://github.com/bigrails/bigrails-redis/releases"
1919

20-
spec.files = Dir['{lib,exe}/**/*', 'README.md']
20+
spec.files = Dir["{lib,exe}/**/*", "README.md"]
2121
spec.bindir = "exe"
2222
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
2323

lib/big_rails/redis/configuration.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def initialize(redis_options)
2121
def ensure_connection_pool_added!
2222
require "connection_pool"
2323
rescue LoadError => e
24-
$stderr.puts "You don't have connection_pool installed in your application. Please add it to your Gemfile and run bundle install"
24+
warn "You don't have connection_pool installed in your application. Please add it to your Gemfile and run bundle install"
2525
raise e
2626
end
2727
end

0 commit comments

Comments
 (0)