sig/cli.rbs in rbs-1.5.1 vs sig/cli.rbs in rbs-1.6.0
- old
+ new
@@ -1,9 +1,10 @@
module RBS
class CLI
class LibraryOptions
attr_accessor core_root: Pathname?
+ attr_accessor config_path: Pathname?
attr_reader libs: Array[String]
attr_reader dirs: Array[String]
attr_reader repos: Array[String]
@@ -61,8 +62,12 @@
def run_parse: (Array[String], LibraryOptions) -> void
def run_test: (Array[String], LibraryOptions) -> void
+ def run_collection: (Array[String], LibraryOptions) -> void
+
def test_opt: (LibraryOptions) -> String?
+
+ def collection_options: (Array[String]) -> OptionParser
end
end