Method: Reactive::GemDependency#embedded?

Defined in:
lib/reactive-core/gem_dependency.rb

#embedded?Boolean



66
67
68
69
70
# File 'lib/reactive-core/gem_dependency.rb', line 66

def embedded?
  return true if @embedded
  return false unless specification
  File.expand_path(specification.installation_path) == File.expand_path(Reactive.path_for('gems'))
end