Sha256: eef0915b9ae10ff2d8632613474b89f8d3cfe2177fcd7b3fcb6103492dfc0708
Contents?: true
Size: 731 Bytes
Versions: 41
Compression:
Stored size: 731 Bytes
Contents
# frozen_string_literal: true require "refinements/structs" module Rubysmith module Builders # Builds project skeleton console for object inspection and exploration. class Console using Refinements::Structs def self.call(...) = new(...).call def initialize configuration, builder: Builder @configuration = configuration @builder = builder end def call return configuration unless configuration.build_console builder.call(configuration.merge(template_path: "%project_name%/bin/console.erb")) .render .permit 0o755 configuration end private attr_reader :configuration, :builder end end end
Version data entries
41 entries across 41 versions & 1 rubygems