Sha256: 2a6e00a3d879ffdb5f7c42bae12ca5fc62bc797e967e860c2b462b93349e0083
Contents?: true
Size: 564 Bytes
Versions: 162
Compression:
Stored size: 564 Bytes
Contents
# frozen_string_literal: true module Files class BundlePath attr_reader :options, :attributes def initialize(attributes = {}, options = {}) @attributes = attributes || {} @options = options || {} end # boolean - Allow access to subfolders content? def recursive @attributes[:recursive] end # string - The path to the resource relative to filesystem. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters. def path @attributes[:path] end end end
Version data entries
162 entries across 162 versions & 1 rubygems