Sha256: d11ee41a56b0b1caada5ab7968a9d7ea1e299cf1624daa05f251102ecba15abf

Contents?: true

Size: 305 Bytes

Versions: 3

Compression:

Stored size: 305 Bytes

Contents

module OpConnect
  class Item
    class GeneratorRecipe
      attr_reader :length, :character_sets

      def initialize(options = {})
        @length = options["length"] if options & ["length"]
        @character_sets = options["characterSets"] if options & ["characterSets"]
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
op_connect-0.1.3 lib/op_connect/item/generator_recipe.rb
op_connect-0.1.2 lib/op_connect/item/generator_recipe.rb
op_connect-0.1.1 lib/op_connect/item/generator_recipe.rb