kamal 2.10.0 → 2.10.1

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
  SHA256:
3
- metadata.gz: 2e202f2e473f8a69d65631a19fa06631927aea76463158b02652f76ad05d927e
4
- data.tar.gz: 485084a59d60985fb25a19ad3b8bfb53498e3af04b657366637aa73061dd6857
3
+ metadata.gz: 0a154bea7b15565394f37d8cbbfc8860e3d6ef337526779390ebd96d917d2d7e
4
+ data.tar.gz: a08c4cd341c5404cd9a5401b24918cdd32d498dbb778a655e1cb7f667030e519
5
5
  SHA512:
6
- metadata.gz: c8d1f1663c8a338950d40f64e1364d33f00ee7b2a6c4f244fde4d9fba5c3513274fcf344a4498e34adb72c4b139b33cc8d8a58ca15a05a551d59e26498092227
7
- data.tar.gz: fd1b593b23a88bec6f7cfedd98222b5fda0cae9bb57132cd043bbacd3f4c8d1221f795b5a0eb5dd1ba6aa5918a041a7978322c35a9f42a22008c9b1378c51393
6
+ metadata.gz: b09103e638d6d14d9605d3327928cf0343a80ff213e9e7f5f42d0c372c60ab78b13e30a983b1dc47e75cb17d7b705e94c98ea73077b8a2e1f87959f684e7a71d
7
+ data.tar.gz: db80e53f84048c1ee6a5f2d3a010469578cbeedb94826b2393dcd4552f9e063c70b42242b3ea705c659c02a9cc87b7311c8e372d106148bea5baaa261cf7811d
@@ -98,7 +98,7 @@ class Kamal::Configuration::Accessory
98
98
  end
99
99
 
100
100
  def volume_args
101
- (specific_volumes + path_volumes(files) + path_volumes(directories)).flat_map(&:docker_args)
101
+ argumentize("--volume", specific_volumes) + (path_volumes(files) + path_volumes(directories)).flat_map(&:docker_args)
102
102
  end
103
103
 
104
104
  def option_args
@@ -170,13 +170,7 @@ class Kamal::Configuration::Accessory
170
170
  end
171
171
 
172
172
  def specific_volumes
173
- (accessory_config["volumes"] || []).collect do |volume_string|
174
- host_path, container_path, options = volume_string.split(":", 3)
175
- Kamal::Configuration::Volume.new \
176
- host_path: host_path,
177
- container_path: container_path,
178
- options: options
179
- end
173
+ accessory_config["volumes"] || []
180
174
  end
181
175
 
182
176
  def path_volumes(paths)
data/lib/kamal/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Kamal
2
- VERSION = "2.10.0"
2
+ VERSION = "2.10.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kamal
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.10.0
4
+ version: 2.10.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Heinemeier Hansson