batali 0.2.28 → 0.2.30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7b44f99fa570ad86207c32e369debe3dd75c8b97
4
- data.tar.gz: 22d5f10a9a4a6d0fad0940af77308aaa2fb565bf
3
+ metadata.gz: 034b14624fd03d050d9ae0e8d1142332b56882b1
4
+ data.tar.gz: 083f314e9a0537ffc3c471f365693d1df8502f60
5
5
  SHA512:
6
- metadata.gz: a0623ef78ba50bd270b25bfa918732a517c0a8e7283aa5461bd34f87857bb82c3be89409b8e07bb1dcebc4f97dd49d42039469d4bcc13f277d6857c4bf8638b2
7
- data.tar.gz: 25711d822b4831f284b9f3f2871813602f1a05db1fe9356328f6e0432c8586e04f229e2297d9b59cae2033f80dbfec5799df3d2504769887a67ec7982fc981b0
6
+ metadata.gz: d37d1bc1ec728b270524dee1af9eaa96963410e18f24258d83451479fba7cc2939908de50d7de364b417b87e14f82fef35985961ae728687c41cafa8c55ff475
7
+ data.tar.gz: f0917117a5202699863a408ad1191ca2a5c4914576aa1808ba62e86df7d751c793ec9ce45d054d7ba7125512359ce01899216e939d31e1bfe990ab3c8d8c9803
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # v0.2.30
2
+ * [fix] Run world pruner prior to manifest output
3
+ * [enhancement] Provider UI context when pruning world
4
+
1
5
  # v0.2.28
2
6
  * [fix] Properly install subdirectory when path defined on git source
3
7
 
@@ -122,6 +122,10 @@ module Batali
122
122
  if(manifest.infrastructure == false)
123
123
  ui.ask 'Current manifest is resolved single path. Convert to infrastructure?'
124
124
  end
125
+ run_action 'Resolving dependency constraints' do
126
+ solv.prune_world!
127
+ nil
128
+ end
125
129
  run_action 'Writing infrastructure manifest file' do
126
130
  File.open(manifest.path, 'w') do |file|
127
131
  manifest = Manifest.new(
@@ -132,7 +136,6 @@ module Batali
132
136
  nil
133
137
  end
134
138
  end
135
- solv.prune_world!
136
139
  ui.info 'Infrastructure manifest solution:'
137
140
  solv.world.units.sort_by(&:first).each do |name, units|
138
141
  ui.puts "#{name} <#{units.map(&:version).sort.map(&:to_s).join(', ')}>"
@@ -1,4 +1,4 @@
1
1
  module Batali
2
2
  # Current version
3
- VERSION = Gem::Version.new('0.2.28')
3
+ VERSION = Gem::Version.new('0.2.30')
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: batali
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.28
4
+ version: 0.2.30
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Roberts