Sha256: 06f2c58fb917b740c299b59efed034af8ca6cf8ee8c8452b1c302ed1f209e11d

Contents?: true

Size: 717 Bytes

Versions: 3

Compression:

Stored size: 717 Bytes

Contents

usage 'shell'
summary 'open a shell on the Nanoc environment'
aliases 'console'
description "
Open an IRB shell on a context that contains @items, @layouts, and @config.
"

module Nanoc::CLI::Commands
  class Shell < ::Nanoc::CLI::CommandRunner
    def run
      require 'pry'

      require_site

      Nanoc::Int::Context.new(env).pry
    end

    protected

    def env
      self.class.env_for_site(site)
    end

    def self.env_for_site(site)
      {
        items: Nanoc::ItemCollectionWithRepsView.new(site.items, nil),
        layouts: Nanoc::LayoutCollectionView.new(site.layouts, nil),
        config: Nanoc::ConfigView.new(site.config, nil),
      }
    end
  end
end

runner Nanoc::CLI::Commands::Shell

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
nanoc-4.1.1 lib/nanoc/cli/commands/shell.rb
nanoc-4.1.0 lib/nanoc/cli/commands/shell.rb
nanoc-4.1.0rc2 lib/nanoc/cli/commands/shell.rb