class Lono::Finder::Blueprint::Configset

Public Class Methods

new(options={}) click to toggle source
Calls superclass method Lono::Finder::Base::new
# File lib/lono/finder/blueprint/configset.rb, line 3
def initialize(options={})
  super(**options) # **options to remove: warning: Using the last argument as keyword parameters is deprecated; maybe ** should be added to the call
  @blueprint_root = options[:blueprint_root] || Lono.blueprint_root
end

Public Instance Methods

blueprint_app() click to toggle source
# File lib/lono/finder/blueprint/configset.rb, line 12
def blueprint_app
  roots = path_roots("#{@blueprint_root}/app/#{type.pluralize}")
  components(roots, "blueprint")
end
local() click to toggle source
# File lib/lono/finder/blueprint/configset.rb, line 8
def local
  project + vendor + blueprint_app + gems
end