tapioca 0.5.3 → 0.5.4
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/lib/tapioca/gemfile.rb +5 -4
- data/lib/tapioca/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 28c385b223b0ab1221b81420ad3a40222ff243552e121959e1e2290b1711357e
|
4
|
+
data.tar.gz: 1c06cd621dee12c9afd506a669c2762d2c7ca2f471f2a22b4e38bde6092f9f13
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e8f6278d058bef31b5fdac1d94556814de7486355d1bcdf9fb2e29da6f33743ec5c330befb492b51ada82d392d10bae2e0c663eda7a365c1272631add49adce6
|
7
|
+
data.tar.gz: 4a342639d1ab6a79b83f6273ac9d44589919953f70773d0492c8c038250f344541d280801db88be72883dd8c55ff8ccd9fafa9ffcbff32e5421df2e821b59365
|
data/lib/tapioca/gemfile.rb
CHANGED
@@ -114,13 +114,14 @@ module Tapioca
|
|
114
114
|
|
115
115
|
sig { returns(T::Array[Pathname]) }
|
116
116
|
def files
|
117
|
-
|
118
|
-
|
119
|
-
|
117
|
+
if default_gem?
|
118
|
+
# `Bundler::RemoteSpecification` delegates missing methods to
|
119
|
+
# `Gem::Specification`, so `files` actually always exists on spec.
|
120
|
+
T.unsafe(@spec).files.map do |file|
|
120
121
|
ruby_lib_dir.join(file)
|
121
122
|
end
|
122
123
|
else
|
123
|
-
spec.full_require_paths.flat_map do |path|
|
124
|
+
@spec.full_require_paths.flat_map do |path|
|
124
125
|
Pathname.glob((Pathname.new(path) / "**/*.rb").to_s)
|
125
126
|
end
|
126
127
|
end
|
data/lib/tapioca/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tapioca
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ufuk Kayserilioglu
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: exe
|
13
13
|
cert_chain: []
|
14
|
-
date: 2021-10-
|
14
|
+
date: 2021-10-26 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: bundler
|