Class: Tapioca::Gemfile::GemSpec

Inherits:
Object
  • Object
show all
Extended by:
T::Sig
Defined in:
lib/tapioca/gemfile.rb

Constant Summary collapse

IGNORED_GEMS =
T.let(["sorbet", "sorbet-static", "sorbet-runtime"].freeze, T::Array[String])

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(spec) ⇒ GemSpec

Returns a new instance of GemSpec.



106
107
108
109
110
111
112
113
# File 'lib/tapioca/gemfile.rb', line 106

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

#filesObject (readonly)

Returns the value of attribute files.



103
104
105
# File 'lib/tapioca/gemfile.rb', line 103

def files
  @files
end

#full_gem_pathObject (readonly)

Returns the value of attribute full_gem_path.



100
101
102
# File 'lib/tapioca/gemfile.rb', line 100

def full_gem_path
  @full_gem_path
end

#versionObject (readonly)

Returns the value of attribute version.



100
101
102
# File 'lib/tapioca/gemfile.rb', line 100

def version
  @version
end

Instance Method Details

#contains_path?(path) ⇒ Boolean

Returns:

  • (Boolean)


131
132
133
134
135
136
137
# File 'lib/tapioca/gemfile.rb', line 131

def contains_path?(path)
  if default_gem?
    files.any? { |file| file.to_s == to_realpath(path) }
  else
    to_realpath(path).start_with?(full_gem_path) || has_parent_gemspec?(path)
  end
end

#export_rbi_files?Boolean

Returns:

  • (Boolean)


150
151
152
# File 'lib/tapioca/gemfile.rb', line 150

def export_rbi_files?
  exported_rbi_files.any?
end

#exported_rbi_filesObject



145
146
147
# File 'lib/tapioca/gemfile.rb', line 145

def exported_rbi_files
  @exported_rbi_files ||= Dir.glob("#{full_gem_path}/rbi/**/*.rbi").sort
end

#exported_rbi_treeObject



155
156
157
158
159
160
161
162
163
164
# File 'lib/tapioca/gemfile.rb', line 155

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

Returns:

  • (Boolean)


116
117
118
# File 'lib/tapioca/gemfile.rb', line 116

def ignore?(gemfile_dir)
  gem_ignored? || gem_in_app_dir?(gemfile_dir)
end

#nameObject



121
122
123
# File 'lib/tapioca/gemfile.rb', line 121

def name
  @spec.name
end

#parse_yard_docsObject



140
141
142
# File 'lib/tapioca/gemfile.rb', line 140

def parse_yard_docs
  files.each { |path| YARD.parse(path.to_s, [], Logger::Severity::FATAL) }
end

#rbi_file_nameObject



126
127
128
# File 'lib/tapioca/gemfile.rb', line 126

def rbi_file_name
  "#{name}@#{version}.rbi"
end