Sha256: d3dd53fc4159694a5d13232f1c16e0dd541307fef603cf9be8c9e0c799153052

Contents?: true

Size: 244 Bytes

Versions: 3

Compression:

Stored size: 244 Bytes

Contents

module Shoe
  module Tasks

    class Task
      attr_reader :spec

      def initialize(spec)
        @spec = Gem::Specification.load(spec)
        @spec.extend(Extensions::Specification)
        define if active?
      end
    end

  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
shoe-0.8.0 lib/shoe/tasks/task.rb
shoe-0.7.1 lib/shoe/tasks/task.rb
shoe-0.7.0 lib/shoe/tasks/task.rb