aboutsummaryrefslogtreecommitdiff
path: root/app/serializers/hash_serializer.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/serializers/hash_serializer.rb')
-rw-r--r--app/serializers/hash_serializer.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/app/serializers/hash_serializer.rb b/app/serializers/hash_serializer.rb
deleted file mode 100644
index 5db639f..0000000
--- a/app/serializers/hash_serializer.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-class HashSerializer
- def self.dump(hash)
- hash.to_json
- end
-
- def self.load(hash)
- (hash || {}).with_indifferent_access
- end
-end