Skip to content

Commit

Permalink
Fix standard
Browse files Browse the repository at this point in the history
  • Loading branch information
ngan committed Mar 18, 2022
1 parent 37cb9de commit db87c4b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bigrails-redis.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
spec.metadata["source_code_uri"] = "https://github.com/BigRails/bigrails-redis"
spec.metadata["changelog_uri"] = "https://github.com/bigrails/bigrails-redis/releases"

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

Expand Down
2 changes: 1 addition & 1 deletion lib/big_rails/redis/configuration.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def initialize(redis_options)
def ensure_connection_pool_added!
require "connection_pool"
rescue LoadError => e
$stderr.puts "You don't have connection_pool installed in your application. Please add it to your Gemfile and run bundle install"
warn "You don't have connection_pool installed in your application. Please add it to your Gemfile and run bundle install"
raise e
end
end
Expand Down

0 comments on commit db87c4b

Please sign in to comment.