File: Steepfile

package info (click to toggle)
ruby-simple-oauth 0.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 372 kB
  • sloc: ruby: 1,722; makefile: 4; sh: 4
file content (18 lines) | stat: -rw-r--r-- 337 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
D = Steep::Diagnostic

target :lib do
  signature "sig"

  check "lib"

  library "base64"
  library "openssl"
  library "uri"
  library "cgi"
  library "securerandom"

  configure_code_diagnostics(D::Ruby.strict) do |hash|
    # Allow FallbackAny warnings for variables in ensure blocks
    hash[D::Ruby::FallbackAny] = :hint
  end
end