class RubyEventStore::Mappers::JSONMapper

Public Class Methods

new(events_class_remapping: {}) click to toggle source
Calls superclass method RubyEventStore::Mappers::Default::new
# File lib/ruby_event_store/mappers/json_mapper.rb, line 6
      def initialize(events_class_remapping: {})
        warn <<~EOW
          Please replace RubyEventStore::Mappers::JSONMapper with RubyEventStore::Mappers::Default

          They're now identical and the former will be removed in next major release.
        EOW
        super
      end