Sha256: 21a66b2d0655a43f866434ccf019453be3434003fc257066cef08668ceac36d8

Contents?: true

Size: 390 Bytes

Versions: 5

Compression:

Stored size: 390 Bytes

Contents

module Xcake
  class Generator
    include Dependency
    include Plugin
    include Visitor
    Class.send(:include, CoreExtensions::ClassDescendants) # done with send because of old ruby versions

    attr_accessor :context

    def initialize(context)
      self.context = context
    end

    def self.plugins_location
      "#{File.dirname(__FILE__)}/generator/*.rb"
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
xcake-0.9.4 lib/xcake/generator.rb
xcake-0.9.3 lib/xcake/generator.rb
xcake-0.9.2 lib/xcake/generator.rb
xcake-0.9.1 lib/xcake/generator.rb
xcake-0.9.0 lib/xcake/generator.rb