fig 2.0.0.pre.alpha.10 → 2.0.0.pre.alpha.11
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 +4 -4
- data/lib/fig/protocol/artifactory.rb +5 -2
- data/lib/fig/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 860a3d53c4807bf0933cfbf65e8dbfa16be7f1bc18c5899d2a2a1b79f2017c0d
|
4
|
+
data.tar.gz: 143f18d5d23eb8b170841bfc9958769241ab1de373c6fbe15ddbdfb2a5150edb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 19e727be17a0be0136373eb7a3b72670290c5d6a07cc05f03f5a46f66c398a7791fe256ebb0aa3375f010497f49b302d3bf7c0cf88c0a1281900c77a2b21907c
|
7
|
+
data.tar.gz: 5cac9612445d72cc3ea3958d9baa23a2a1d8229e33427190dd469f8f91b5a431e55d9599417caaf1a86e74c10b2fd9cc5f8fcd8ca11173b5968b3e1dd71e235f
|
@@ -177,7 +177,9 @@ class Fig::Protocol::Artifactory
|
|
177
177
|
response = client.get(storage_url)
|
178
178
|
|
179
179
|
# compare sizes first
|
180
|
-
|
180
|
+
remote_size = response['size'].to_i
|
181
|
+
if remote_size != ::File.size(path)
|
182
|
+
# TODO VERBOSE
|
181
183
|
return false
|
182
184
|
end
|
183
185
|
|
@@ -188,7 +190,8 @@ class Fig::Protocol::Artifactory
|
|
188
190
|
if remote_mtime <= local_mtime
|
189
191
|
return true
|
190
192
|
end
|
191
|
-
|
193
|
+
|
194
|
+
# TODO VERBOSE
|
192
195
|
return false
|
193
196
|
rescue => error
|
194
197
|
Fig::Logging.debug "Error checking if #{path} is up to date: #{error.message}"
|
data/lib/fig/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fig
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.0.pre.alpha.
|
4
|
+
version: 2.0.0.pre.alpha.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Fig Folks
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-09-
|
10
|
+
date: 2025-09-25 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: bcrypt_pbkdf
|
@@ -334,7 +334,7 @@ dependencies:
|
|
334
334
|
description: |-
|
335
335
|
Fig is a utility for configuring environments and managing dependencies across a team of developers. Given a list of packages and a command to run, Fig builds environment variables named in those packages (e.g., CLASSPATH), then executes the command in that environment. The caller's environment is not affected.
|
336
336
|
|
337
|
-
Built from git SHA1:
|
337
|
+
Built from git SHA1: 23313c3-dirty
|
338
338
|
email: maintainer@figpackagemanager.org
|
339
339
|
executables:
|
340
340
|
- fig
|
@@ -545,7 +545,7 @@ files:
|
|
545
545
|
licenses:
|
546
546
|
- BSD-3-Clause
|
547
547
|
metadata:
|
548
|
-
git_sha:
|
548
|
+
git_sha: 23313c3-dirty
|
549
549
|
rdoc_options: []
|
550
550
|
require_paths:
|
551
551
|
- lib
|
@@ -563,5 +563,5 @@ requirements: []
|
|
563
563
|
rubygems_version: 3.6.1
|
564
564
|
specification_version: 4
|
565
565
|
summary: 'Utility for configuring environments and managing dependencies across a
|
566
|
-
team of developers. Built from git SHA1:
|
566
|
+
team of developers. Built from git SHA1: 23313c3-dirty'
|
567
567
|
test_files: []
|