Sha256: 9579ec8e3a0515e1eb80511157630e362f4770e4718aa27200bd5464568832c7
Contents?: true
Size: 1.35 KB
Versions: 4
Compression:
Stored size: 1.35 KB
Contents
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. The # ASF licenses this file to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance with the # License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. module CIMI module Features def self.included(k) current_features = features k.instance_eval do features(¤t_features) end end def self.features(&block) block_given? ? @features = block : @features || Proc.new{} end features do feature :default_initial_state, :for => :machines do description "Indicates what the default initial state of a new Machine " end feature :initial_states, :for => :machines do description "Indicates the list of allowable initial states" end end end end
Version data entries
4 entries across 4 versions & 1 rubygems