tldr 1.1.0 → 1.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d60d27a492477aa1034acf117993630307f595690f97d356da763fb352f4837e
4
- data.tar.gz: 240ee628207bf5b79568fff7ef93b5e6174825b8a53748e2b453076d2d00db7a
3
+ metadata.gz: f2e76669f63030d5d011c737605d74c0fc34e1bb203ef360c0900c03746ab36a
4
+ data.tar.gz: beb1e0f8266283831ab798416037935db1fea8c173f477a675aab643ff1caef2
5
5
  SHA512:
6
- metadata.gz: 9e513372aedda6a808ee61e426fc3c738e1f7837fe3ccb55ec658153c15998b4eab9da976680f062d936c638e6fcdcbdcdfabec181137acc48ce6187b5d4aa69
7
- data.tar.gz: 4fa415b7f6858e8a26766232a251542f28e7485ead112dd514d72fb55364ae54520ff1d3585dada05e8e56861295dfe458922f4038b1cdb67ee7ec1c4883f382
6
+ metadata.gz: 0a4dc471f7d419d6a87701ec162a81fa852fbaf53a25c80e8ede7449c6e81bbd7c58095e71fa3565ef3e4b3569880386da90764094cc5877c7f8fba8f01b3391
7
+ data.tar.gz: 2bb4fd49fa98a9e5fd1cd90a0eca0aa3b15d2d6c5b80215ecad5fd7c073be6e6d1c7c804ba9ed230ab670e0585b664ca381b09d85040cdd2eac59ea382c03e97
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## unreleased
2
2
 
3
+ ## [1.1.1]
4
+
5
+ * Allow empty config files [#21](https://github.com/tendersearls/tldr/pull/21)
6
+
3
7
  ## [1.1.0]
4
8
 
5
9
  * Add `--exit-0-on-timeout` to allow the suite timeout to be used more as a budget constraint (e.g. "I know my full suite is going to take 30 seconds to run but I want to constantly run as many as I can in 500ms to get fast feedback")
data/lib/tldr/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  class TLDR
2
- VERSION = "1.1.0"
2
+ VERSION = "1.1.1"
3
3
  end
@@ -4,7 +4,7 @@ class TLDR
4
4
  class YamlParser
5
5
  def parse path
6
6
  require "yaml"
7
- YAML.load_file(path)
7
+ (YAML.load_file(path) || {})
8
8
  .transform_keys { |k| k.to_sym }
9
9
  .tap do |dotfile_args|
10
10
  # Since we don't have shell expansion, we have to glob any paths ourselves
metadata CHANGED
@@ -1,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tldr
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Searls
8
8
  - Aaron Patterson
9
- autorequire:
10
9
  bindir: exe
11
10
  cert_chain: []
12
- date: 2025-07-13 00:00:00.000000000 Z
11
+ date: 1980-01-02 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: super_diff
@@ -53,7 +52,6 @@ dependencies:
53
52
  - - "~>"
54
53
  - !ruby/object:Gem::Version
55
54
  version: '1.10'
56
- description:
57
55
  email:
58
56
  - searls@gmail.com
59
57
  - tenderlove@ruby-lang.org
@@ -115,7 +113,6 @@ metadata:
115
113
  homepage_uri: https://github.com/tendersearls/tldr
116
114
  source_code_uri: https://github.com/tendersearls/tldr
117
115
  changelog_uri: https://github.com/tendersearls/tldr/blob/main/CHANGELOG.md
118
- post_install_message:
119
116
  rdoc_options: []
120
117
  require_paths:
121
118
  - lib
@@ -130,8 +127,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
130
127
  - !ruby/object:Gem::Version
131
128
  version: '0'
132
129
  requirements: []
133
- rubygems_version: 3.3.26
134
- signing_key:
130
+ rubygems_version: 3.6.9
135
131
  specification_version: 4
136
132
  summary: TLDR will run your tests, but only for 1.8 seconds.
137
133
  test_files: []