Sha256: c05129dc6fd9f804928534ff63bb2fd8e8b3ebc198a2c5f70551968af18476d2

Contents?: true

Size: 1.44 KB

Versions: 4

Compression:

Stored size: 1.44 KB

Contents

module Roger
  # Loader for mockupfile
  class Mockupfile

    # This is the context for the mockupfile evaluation. It should be empty except for the
    # #mockup method.
    class Context

      def initialize(mockupfile)
        @_mockupfile = mockupfile
      end

      def mockup
        @_mockupfile
      end

      def binding
        ::Kernel.binding
      end

    end

    # @attr :path [Pathname] The path of the Mockupfile for this project
    attr_accessor :path, :project

    def initialize(project, path = nil)
      @project = project
      @path = (path && Pathname.new(path)) || Pathname.new(project.path + "Mockupfile")
    end

    # Actually load the mockupfile
    def load
      if File.exist?(@path) && !self.loaded?
        @source = File.read(@path)
        context = Context.new(self)
        eval @source, context.binding, @path.to_s, 1
        @loaded = true
      end
    end

    # Wether or not the Mockupfile has been loaded
    def loaded?
      @loaded
    end

    def release(options = {})
      release = self.project.release(options)
      if block_given?
        yield(release)
      end
      release
    end

    def serve(options = {})
      server = self.project.server(options)
      if block_given?
        yield(server)
      end
      server
    end

    alias :server :serve

    def test(options = {})
      test = self.project.test(options)
      if block_given?
        yield(test)
      end
      test
    end

  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
roger-1.1.3 lib/roger/mockupfile.rb
roger-1.1.2 lib/roger/mockupfile.rb
roger-1.1.1 lib/roger/mockupfile.rb
roger-1.1.0 lib/roger/mockupfile.rb