Sha256: 1cefe12db7f9b798ec26369e27923cf465fa70c8ef4ce233b4539f4c44b3a7a3

Contents?: true

Size: 1.79 KB

Versions: 24

Compression:

Stored size: 1.79 KB

Contents

module Steep
  module Drivers
    class Init
      attr_reader :stdout
      attr_reader :stderr
      attr_accessor :force_write

      include Utils::DriverHelper

      TEMPLATE = <<~EOF
      # D = Steep::Diagnostic
      #
      # target :lib do
      #   signature "sig"
      #
      #   check "lib"                       # Directory name
      #   check "Gemfile"                   # File name
      #   check "app/models/**/*.rb"        # Glob
      #   # ignore "lib/templates/*.rb"
      #
      #   # library "pathname"              # Standard libraries
      #   # library "strong_json"           # Gems
      #
      #   # configure_code_diagnostics(D::Ruby.default)      # `default` diagnostics setting (applies by default)
      #   # configure_code_diagnostics(D::Ruby.strict)       # `strict` diagnostics setting
      #   # configure_code_diagnostics(D::Ruby.lenient)      # `lenient` diagnostics setting
      #   # configure_code_diagnostics(D::Ruby.silent)       # `silent` diagnostics setting
      #   # configure_code_diagnostics do |hash|             # You can setup everything yourself
      #   #   hash[D::Ruby::NoMethod] = :information
      #   # end
      # end

      # target :test do
      #   signature "sig", "sig-private"
      #
      #   check "test"
      #
      #   # library "pathname"              # Standard libraries
      # end
      EOF

      def initialize(stdout:, stderr:)
        @stdout = stdout
        @stderr = stderr
        @force_write = false
      end

      def run
        path = steepfile || Pathname("Steepfile")

        if path.file? && !force_write
          stdout.puts "#{path} already exists, --force to overwrite"
          return 1
        end

        stdout.puts "Writing #{path}..."
        path.write(TEMPLATE)

        0
      end
    end
  end
end

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
steep-1.5.3 lib/steep/drivers/init.rb
steep-1.5.2 lib/steep/drivers/init.rb
steep-1.5.1 lib/steep/drivers/init.rb
steep-1.5.0 lib/steep/drivers/init.rb