File: active_support.rb

package info (click to toggle)
ruby-postmark 1.25.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 480 kB
  • sloc: ruby: 5,413; makefile: 4
file content (10 lines) | stat: -rw-r--r-- 206 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
# assume activesupport is already loaded
module Postmark
  module ResponseParsers
    module ActiveSupport
      def self.decode(data)
        ::ActiveSupport::JSON.decode(data)
      end
    end
  end
end