Sha256: 59853e6a012ed16ffdef0cec1d9f9471b04b9295b215f33006225523a84d1d29
Contents?: true
Size: 551 Bytes
Versions: 5
Compression:
Stored size: 551 Bytes
Contents
module RIM module Manifest class Manifest attr_reader :remote_url attr_reader :modules def initialize(remote_url, modules) @remote_url = remote_url @modules = modules end end class Module attr_reader :remote_path attr_reader :local_path attr_reader :target_revision attr_reader :ignores def initialize(args = {}) @remote_path = args[:remote_path] @local_path = args[:local_path] @target_revision = args[:target_revision] @ignores = args[:ignores] end end end end
Version data entries
5 entries across 5 versions & 1 rubygems