Sha256: 4f2eec6a3c683f48e4e7e982c512ed7672b0b33a21441dc3327f78f9ab66bd6d

Contents?: true

Size: 443 Bytes

Versions: 2

Compression:

Stored size: 443 Bytes

Contents

module BrighterPlanet
  module Dirigible
    module Data
      def self.included(base)
        base.force_schema do
          float :distance
          float :payload
          float :surface_area
          integer :dirigible_class_id
        end
        
        base.data_miner do
          process "the first step defined in the emitter module" do
            # just make sure i'm here
          end
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
emitter-0.10.0 spec/fixtures/dirigible/lib/dirigible/data.rb
emitter-0.5.2 spec/fixtures/dirigible/lib/dirigible/data.rb