Class: RBS::Collection::Config::LockfileGenerator
- Inherits:
-
Object
- Object
- RBS::Collection::Config::LockfileGenerator
- Defined in:
- lib/rbs/collection/config/lockfile_generator.rb
Defined Under Namespace
Classes: GemfileLockMismatchError
Constant Summary collapse
- ALUMNI_STDLIBS =
{ "mutex_m" => ">= 0.3.0", "abbrev" => nil, "base64" => nil, "benchmark" => nil, "bigdecimal" => nil, "csv" => nil, "kconv" => nil, "logger" => nil, "minitest" => nil, "net-smtp" => nil, "nkf" => nil, "observer" => nil, "cgi" => nil, "pstore" => nil, }
Instance Attribute Summary collapse
-
#config ⇒ Object
readonly
Returns the value of attribute config.
-
#definition ⇒ Object
readonly
Returns the value of attribute definition.
-
#existing_lockfile ⇒ Object
readonly
Returns the value of attribute existing_lockfile.
-
#gem_entries ⇒ Object
readonly
Returns the value of attribute gem_entries.
-
#gem_hash ⇒ Object
readonly
Returns the value of attribute gem_hash.
-
#lockfile ⇒ Object
readonly
Returns the value of attribute lockfile.
Class Method Summary collapse
Instance Method Summary collapse
- #generate ⇒ Object
-
#initialize(config:, definition:, with_lockfile:) ⇒ LockfileGenerator
constructor
A new instance of LockfileGenerator.
Constructor Details
#initialize(config:, definition:, with_lockfile:) ⇒ LockfileGenerator
Returns a new instance of LockfileGenerator.
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
# File 'lib/rbs/collection/config/lockfile_generator.rb', line 48 def initialize(config:, definition:, with_lockfile:) @config = config @gem_entries = config.gems.each.with_object({}) do |entry, hash| #$ Hash[String, gem_entry?] name = entry["name"] hash[name] = entry end lockfile_path = Config.to_lockfile_path(config.config_path) lockfile_dir = lockfile_path.parent @lockfile = Lockfile.new( lockfile_path: lockfile_path, path: config.repo_path_data, gemfile_lock_path: definition.lockfile.relative_path_from(lockfile_dir) ) if with_lockfile && lockfile_path.file? @existing_lockfile = Lockfile.from_lockfile(lockfile_path: lockfile_path, data: YAML.load_file(lockfile_path.to_s)) validate_gemfile_lock_path!(lock: @existing_lockfile, gemfile_lock_path: definition.lockfile) end @definition = definition @gem_hash = definition.locked_gems.specs.each.with_object({}) do |spec, hash| #$ Hash[String, Bundler::LazySpecification] hash[spec.name] = spec end end |
Instance Attribute Details
#config ⇒ Object (readonly)
Returns the value of attribute config.
40 41 42 |
# File 'lib/rbs/collection/config/lockfile_generator.rb', line 40 def config @config end |
#definition ⇒ Object (readonly)
Returns the value of attribute definition.
40 41 42 |
# File 'lib/rbs/collection/config/lockfile_generator.rb', line 40 def definition @definition end |
#existing_lockfile ⇒ Object (readonly)
Returns the value of attribute existing_lockfile.
40 41 42 |
# File 'lib/rbs/collection/config/lockfile_generator.rb', line 40 def existing_lockfile @existing_lockfile end |
#gem_entries ⇒ Object (readonly)
Returns the value of attribute gem_entries.
40 41 42 |
# File 'lib/rbs/collection/config/lockfile_generator.rb', line 40 def gem_entries @gem_entries end |
#gem_hash ⇒ Object (readonly)
Returns the value of attribute gem_hash.
40 41 42 |
# File 'lib/rbs/collection/config/lockfile_generator.rb', line 40 def gem_hash @gem_hash end |
#lockfile ⇒ Object (readonly)
Returns the value of attribute lockfile.
40 41 42 |
# File 'lib/rbs/collection/config/lockfile_generator.rb', line 40 def lockfile @lockfile end |
Class Method Details
.generate(config:, definition:, with_lockfile: true) ⇒ Object
42 43 44 45 46 |
# File 'lib/rbs/collection/config/lockfile_generator.rb', line 42 def self.generate(config:, definition:, with_lockfile: true) generator = new(config: config, definition: definition, with_lockfile: with_lockfile) generator.generate generator.lockfile end |
Instance Method Details
#generate ⇒ Object
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 |
# File 'lib/rbs/collection/config/lockfile_generator.rb', line 76 def generate config.gems.each do |gem| case when gem.dig("source", "type") == "stdlib" unless gem.fetch("ignore", false) assign_stdlib(name: gem["name"]) end else assign_gem(name: gem["name"], version: gem["version"]) end end definition.dependencies.each do |dep| if dep.autorequire && dep.autorequire.empty? next end if spec = gem_hash[dep.name] assign_gem(name: dep.name, version: spec.version, skip: dep.source.is_a?(Bundler::Source::Gemspec)) end end lockfile.lockfile_path.write(YAML.dump(lockfile.to_lockfile)) end |