Class: Tapioca::Gemfile::GemSpec
- Inherits:
-
Object
- Object
- Tapioca::Gemfile::GemSpec
show all
- Extended by:
- T::Sig
- Includes:
- Tapioca::GemHelper
- Defined in:
- lib/tapioca/gemfile.rb
Constant Summary
collapse
- IGNORED_GEMS =
T.let(
[
"sorbet",
"sorbet-static",
"sorbet-runtime",
"sorbet-static-and-runtime",
"debug",
"fakefs",
].freeze,
T::Array[String],
)
Instance Attribute Summary collapse
Class Method Summary
collapse
Instance Method Summary
collapse
#gem_in_app_dir?, #gem_in_bundle_path?, #to_realpath
Constructor Details
#initialize(spec) ⇒ GemSpec
Returns a new instance of GemSpec.
174
175
176
177
178
179
180
181
|
# File 'lib/tapioca/gemfile.rb', line 174
def initialize(spec)
@spec = T.let(spec, Tapioca::Gemfile::Spec)
real_gem_path = to_realpath(@spec.full_gem_path)
@full_gem_path = T.let(real_gem_path, String)
@version = T.let(version_string, String)
@exported_rbi_files = T.let(nil, T.nilable(T::Array[String]))
@files = T.let(collect_files, T::Array[Pathname])
end
|
Instance Attribute Details
#files ⇒ Object
Returns the value of attribute files.
171
172
173
|
# File 'lib/tapioca/gemfile.rb', line 171
def files
@files
end
|
#full_gem_path ⇒ Object
Returns the value of attribute full_gem_path.
168
169
170
|
# File 'lib/tapioca/gemfile.rb', line 168
def full_gem_path
@full_gem_path
end
|
#version ⇒ Object
Returns the value of attribute version.
168
169
170
|
# File 'lib/tapioca/gemfile.rb', line 168
def version
@version
end
|
Class Method Details
.spec_lookup_by_file_path ⇒ Object
143
144
145
146
147
148
149
150
151
152
|
# File 'lib/tapioca/gemfile.rb', line 143
def spec_lookup_by_file_path
@lookup ||= T.let(
[*::Gem::Specification.default_stubs, *::Gem::Specification.stubs]
.map! { |spec| new(spec.to_spec) }
.flat_map do |spec|
spec.files.filter_map { |file| [file.realpath.to_s, spec] if file.exist? }
end.to_h,
T.nilable(T::Hash[String, Gemfile::GemSpec]),
)
end
|
Instance Method Details
#==(other) ⇒ Object
184
185
186
|
# File 'lib/tapioca/gemfile.rb', line 184
def ==(other)
GemSpec === other && other.name == name && other.version == version
end
|
#contains_path?(path) ⇒ Boolean
204
205
206
207
208
209
210
|
# File 'lib/tapioca/gemfile.rb', line 204
def contains_path?(path)
if default_gem?
files.any? { |file| file.to_s == to_realpath(path) }
else
path_in_dir?(to_realpath(path), full_gem_path) || has_parent_gemspec?(path)
end
end
|
#export_rbi_files? ⇒ Boolean
223
224
225
|
# File 'lib/tapioca/gemfile.rb', line 223
def export_rbi_files?
exported_rbi_files.any?
end
|
#exported_rbi_files ⇒ Object
218
219
220
|
# File 'lib/tapioca/gemfile.rb', line 218
def exported_rbi_files
@exported_rbi_files ||= Dir.glob("#{full_gem_path}/rbi/**/*.rbi").sort
end
|
#exported_rbi_tree ⇒ Object
228
229
230
231
232
233
234
235
236
237
|
# File 'lib/tapioca/gemfile.rb', line 228
def exported_rbi_tree
rewriter = RBI::Rewriters::Merge.new(keep: RBI::Rewriters::Merge::Keep::NONE)
exported_rbi_files.each do |file|
rbi = RBI::Parser.parse_file(file)
rewriter.merge(rbi)
end
rewriter.tree
end
|
#ignore?(gemfile_dir) ⇒ Boolean
189
190
191
|
# File 'lib/tapioca/gemfile.rb', line 189
def ignore?(gemfile_dir)
gem_ignored? || gem_in_app_dir?(gemfile_dir, full_gem_path)
end
|
#name ⇒ Object
194
195
196
|
# File 'lib/tapioca/gemfile.rb', line 194
def name
@spec.name
end
|
#parse_yard_docs ⇒ Object
213
214
215
|
# File 'lib/tapioca/gemfile.rb', line 213
def parse_yard_docs
files.each { |path| YARD.parse(path.to_s, [], Logger::Severity::FATAL) }
end
|
#rbi_file_name ⇒ Object
199
200
201
|
# File 'lib/tapioca/gemfile.rb', line 199
def rbi_file_name
"#{name}@#{version}.rbi"
end
|
#relative_path_for(file) ⇒ Object
240
241
242
243
244
245
246
|
# File 'lib/tapioca/gemfile.rb', line 240
def relative_path_for(file)
if default_gem?
file.realpath.relative_path_from(RbConfig::CONFIG["rubylibdir"])
else
file.realpath.relative_path_from(full_gem_path)
end
end
|