taski 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.standard.yml +9 -0
- data/README.md +93 -201
- data/Rakefile +7 -1
- data/examples/complex_example.rb +16 -18
- data/examples/readme_example.rb +2 -2
- data/lib/taski/dependency_analyzer.rb +18 -8
- data/lib/taski/exceptions.rb +4 -4
- data/lib/taski/logger.rb +202 -0
- data/lib/taski/reference.rb +3 -3
- data/lib/taski/task/base.rb +3 -3
- data/lib/taski/task/define_api.rb +19 -6
- data/lib/taski/task/dependency_resolver.rb +44 -11
- data/lib/taski/task/exports_api.rb +1 -1
- data/lib/taski/task/instance_management.rb +51 -10
- data/lib/taski/version.rb +1 -1
- data/lib/taski.rb +5 -5
- data/sig/taski.rbs +39 -2
- metadata +5 -4
- data/Steepfile +0 -20
data/Steepfile
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
# Steepfile
|
2
|
-
|
3
|
-
D = Steep::Diagnostic
|
4
|
-
|
5
|
-
target :lib do
|
6
|
-
signature "sig"
|
7
|
-
|
8
|
-
check "lib"
|
9
|
-
|
10
|
-
library "monitor", "prism"
|
11
|
-
|
12
|
-
# Configure diagnostics with lenient settings for metaprogramming-heavy code
|
13
|
-
configure_code_diagnostics do |hash|
|
14
|
-
hash[D::Ruby::UnannotatedEmptyCollection] = :information
|
15
|
-
hash[D::Ruby::UnknownInstanceVariable] = :information
|
16
|
-
hash[D::Ruby::FallbackAny] = :information
|
17
|
-
hash[D::Ruby::NoMethod] = :warning
|
18
|
-
hash[D::Ruby::UndeclaredMethodDefinition] = :information
|
19
|
-
end
|
20
|
-
end
|