Class: Tapioca::Gemfile

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

Defined Under Namespace

Classes: GemSpec

Constant Summary collapse

Spec =
T.type_alias do
  T.any(
    ::Bundler::StubSpecification,
    ::Gem::Specification
  )
end

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeGemfile

Returns a new instance of Gemfile.



29
30
31
32
33
34
35
36
# File 'lib/tapioca/gemfile.rb', line 29

def initialize
  @gemfile = T.let(File.new(Bundler.default_gemfile), File)
  @lockfile = T.let(File.new(Bundler.default_lockfile), File)
  @definition = T.let(Bundler::Dsl.evaluate(gemfile, lockfile, {}), Bundler::Definition)
  dependencies, missing_specs = load_dependencies
  @dependencies = T.let(dependencies, T::Array[GemSpec])
  @missing_specs = T.let(missing_specs, T::Array[String])
end

Instance Attribute Details

#definitionObject (readonly)

Returns the value of attribute definition.



20
21
22
# File 'lib/tapioca/gemfile.rb', line 20

def definition
  @definition
end

#dependenciesObject (readonly)

Returns the value of attribute dependencies.



23
24
25
# File 'lib/tapioca/gemfile.rb', line 23

def dependencies
  @dependencies
end

#missing_specsObject (readonly)

Returns the value of attribute missing_specs.



26
27
28
# File 'lib/tapioca/gemfile.rb', line 26

def missing_specs
  @missing_specs
end

Instance Method Details

#gem(gem_name) ⇒ Object



39
40
41
# File 'lib/tapioca/gemfile.rb', line 39

def gem(gem_name)
  dependencies.detect { |dep| dep.name == gem_name }
end

#require_bundleObject



44
45
46
# File 'lib/tapioca/gemfile.rb', line 44

def require_bundle
  T.unsafe(runtime).require(*groups)
end