File: Steepfile

package info (click to toggle)
ruby-multi-xml 0.8.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 472 kB
  • sloc: ruby: 2,822; sh: 4; makefile: 2
file content (22 lines) | stat: -rw-r--r-- 522 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
D = Steep::Diagnostic

target :lib do
  signature "sig"

  # Check core library files (excluding parser implementations that depend on optional gems)
  check "lib/multi_xml.rb"
  check "lib/multi_xml/constants.rb"
  check "lib/multi_xml/errors.rb"
  check "lib/multi_xml/file_like.rb"
  check "lib/multi_xml/helpers.rb"
  check "lib/multi_xml/version.rb"

  # Use stdlib types
  library "date"
  library "time"
  library "yaml"
  library "bigdecimal"
  library "stringio"

  configure_code_diagnostics(D::Ruby.strict)
end