Sha256: ba4bbf0e87821f1d9041c6f764a224669b5d6a734eb5573dd28f58aa344e8c52

Contents?: true

Size: 989 Bytes

Versions: 6

Compression:

Stored size: 989 Bytes

Contents

# 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 "yaml"
  library "pathname"

  # 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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
configx-0.6.0 Steepfile
configx-0.5.0 Steepfile
configx-0.4.0 Steepfile
configx-0.3.0 Steepfile
configx-0.2.0 Steepfile
configx-0.1.0 Steepfile