Changing double quotes to single quotes

This commit is contained in:
Miha Mencin 2019-01-31 10:31:03 +01:00 committed by GitHub
parent 3ec62758fe
commit d2dfe68e46
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,6 @@
class JsonbHashSerializer
def self.dump(hash)
hash.nil? ? "{}" : hash.to_json
hash.nil? ? '{}' : hash.to_json
end
def self.load(hash)