probatio 0.9.0 → 1.1.0
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/CHANGELOG.md +11 -1
- data/README.md +307 -0
- data/exe/proba +245 -1
- data/lib/probatio/assertions.rb +324 -0
- data/lib/probatio/debug.rb +35 -0
- data/lib/probatio/examples/a_plugin.rb +14 -0
- data/lib/probatio/examples/a_test.rb +126 -0
- data/lib/probatio/mangle.rb +42 -0
- data/lib/probatio/more.rb +151 -0
- data/lib/probatio/plug.rb +72 -0
- data/lib/probatio/plugins.rb +253 -0
- data/lib/probatio/waiters.rb +44 -0
- data/lib/probatio.rb +773 -157
- data/probatio.gemspec +2 -7
- metadata +17 -8
data/probatio.gemspec
CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
|
|
10
10
|
s.platform = Gem::Platform::RUBY
|
11
11
|
s.authors = [ 'John Mettraux' ]
|
12
12
|
s.email = [ 'jmettraux+flor@gmail.com' ]
|
13
|
-
s.homepage =
|
13
|
+
s.homepage = "https://github.com/floraison/#{s.name}"
|
14
14
|
s.license = 'MIT'
|
15
15
|
s.summary = 'test tools for floraison and flor'
|
16
16
|
|
@@ -38,13 +38,8 @@ Test tools for floraison and flor. Somewhere between Minitest and Rspec, but not
|
|
38
38
|
"#{s.name}.gemspec",
|
39
39
|
]
|
40
40
|
|
41
|
-
#s.add_runtime_dependency 'tzinfo'
|
42
|
-
# this dependency appears in 'et-orbi'
|
43
|
-
|
44
41
|
s.add_runtime_dependency 'colorato', '~> 1.0'
|
45
|
-
|
46
|
-
#s.add_development_dependency 'rspec', '~> 3.8'
|
47
|
-
# ;-)
|
42
|
+
#s.add_runtime_dependency 'diff-lcs', '~> 1.5'
|
48
43
|
|
49
44
|
s.require_path = 'lib'
|
50
45
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: probatio
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Mettraux
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-04-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: colorato
|
@@ -38,16 +38,25 @@ files:
|
|
38
38
|
- README.md
|
39
39
|
- exe/proba
|
40
40
|
- lib/probatio.rb
|
41
|
+
- lib/probatio/assertions.rb
|
42
|
+
- lib/probatio/debug.rb
|
43
|
+
- lib/probatio/examples/a_plugin.rb
|
44
|
+
- lib/probatio/examples/a_test.rb
|
45
|
+
- lib/probatio/mangle.rb
|
46
|
+
- lib/probatio/more.rb
|
47
|
+
- lib/probatio/plug.rb
|
48
|
+
- lib/probatio/plugins.rb
|
49
|
+
- lib/probatio/waiters.rb
|
41
50
|
- probatio.gemspec
|
42
|
-
homepage: https://github.com/floraison/
|
51
|
+
homepage: https://github.com/floraison/probatio
|
43
52
|
licenses:
|
44
53
|
- MIT
|
45
54
|
metadata:
|
46
|
-
changelog_uri: https://github.com/floraison/
|
47
|
-
bug_tracker_uri: https://github.com/floraison/
|
48
|
-
documentation_uri: https://github.com/floraison/
|
49
|
-
homepage_uri: https://github.com/floraison/
|
50
|
-
source_code_uri: https://github.com/floraison/
|
55
|
+
changelog_uri: https://github.com/floraison/probatio/blob/master/CHANGELOG.md
|
56
|
+
bug_tracker_uri: https://github.com/floraison/probatio/issues
|
57
|
+
documentation_uri: https://github.com/floraison/probatio
|
58
|
+
homepage_uri: https://github.com/floraison/probatio
|
59
|
+
source_code_uri: https://github.com/floraison/probatio
|
51
60
|
rubygems_mfa_required: 'true'
|
52
61
|
post_install_message:
|
53
62
|
rdoc_options: []
|