Sha256: d19ecc8deb7a590f0b9723f69f1b4b5ac92b864c23f3e843f14b1767c6fe810e
Contents?: true
Size: 457 Bytes
Versions: 1
Compression:
Stored size: 457 Bytes
Contents
# frozen_string_literal: true module Mwc # The project settings class Project attr_accessor :name, :shell, :source_map attr_reader :options # :nodoc: def initialize @options = {} end # Add customize options # # @param name [String] the option name # @param value [String] the option value # # @since 0.2.0 # @api private def option(name, value) @options[name] = value end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mwc-0.2.0 | lib/mwc/project.rb |