Sha256: 015cd113943d4c5554a7ffcaca196a162a92bdf9424438b189b3331590a504a2
Contents?: true
Size: 603 Bytes
Versions: 15
Compression:
Stored size: 603 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 attr_reader :subdir def initialize(args = {}) @remote_path = args[:remote_path] @local_path = args[:local_path] @target_revision = args[:target_revision] @ignores = args[:ignores] @subdir = args[:subdir] end end end end
Version data entries
15 entries across 15 versions & 1 rubygems