Sha256: 035e31795bfae97f2d513ba67a4179ffaec33ebf657a0fd5cbf8c9219ad37e6d

Contents?: true

Size: 479 Bytes

Versions: 2

Compression:

Stored size: 479 Bytes

Contents

begin
  # Fat binaries for Windows
  RUBY_VERSION =~ /(\d+.\d+)/
  require "#{$1}/rocketamf_ext"
rescue LoadError
  require 'rocketamf_ext'
end

module RocketAMF
  # This module holds all the modules/classes that implement AMF's functionality
  # in C
  module Ext
    $DEBUG and warn 'Using C library for RocketAMF.'
  end

  #:stopdoc:
  # Import serializer/deserializer
  Deserializer = RocketAMF::Ext::Deserializer
  Serializer = RocketAMF::Ext::Serializer

  #:startdoc:
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
mrpin-rocketamf-2.0.1 lib/rocketamf/ext.rb
mrpin-rocketamf-2.0.0 lib/rocketamf/ext.rb