bundle_depot 0.2.0 → 0.2.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 +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +9 -2
- data/lib/bundle_depot/cache.rb +1 -1
- data/lib/bundle_depot/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b0d026355f6a2df8af8c13214b35a1f9cafd96f5
|
4
|
+
data.tar.gz: 90594ab7316db2b3685a864bb8eec83a3c39b539
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3b32118c29aee292b0762628b2d0f93938dc7e9e668b7136eef0d4b09b3a5c6ad88cfea6d93c6531215cc5925e3dc3b02ddcc3986dab7330e40286eb77d4478a
|
7
|
+
data.tar.gz: cbcc878e3c60c2cb35b8f7333e331b1bba7366c584ed7946b2c1f8fd710c5400cfc0c39d128c1c0f5da1178ba94d884dee03296656d482807a00206f16a99032
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -63,6 +63,13 @@ a shared cache folder.
|
|
63
63
|
* `BUNDLE_DEPOT_CACHE`
|
64
64
|
Point to where you want to keep your local cache. Defaults to `.bundle/depot/cache`
|
65
65
|
|
66
|
+
* `BUNDLE_DEPOT_SCP_HOST`
|
67
|
+
Activates remote cache. Sets the host the cache will be uploaded to.
|
68
|
+
|
69
|
+
|
70
|
+
* `BUNDLE_DEPOT_SCP_USER` and `BUNDLE_DEPOT_SCP_USER`
|
71
|
+
The credentials for the SCP session.
|
72
|
+
|
66
73
|
|
67
74
|
## Complete Example
|
68
75
|
|
@@ -74,7 +81,7 @@ a shared cache folder.
|
|
74
81
|
Preparing Build Agent Environment
|
75
82
|
====================================================================================
|
76
83
|
EOF
|
77
|
-
gem install bundle_depot --
|
84
|
+
gem install bundle_depot --bindir bin --no-rdoc --no-ri
|
78
85
|
|
79
86
|
|
80
87
|
fmt <<'EOF'
|
@@ -82,7 +89,7 @@ a shared cache folder.
|
|
82
89
|
Bundle it!
|
83
90
|
====================================================================================
|
84
91
|
EOF
|
85
|
-
export
|
92
|
+
export BUNDLE_DEPOT_CACHE=/var/lib/bundle_depot
|
86
93
|
export BUNDLE_DEPOT_SCP_USER=upload
|
87
94
|
export BUNDLE_DEPOT_SCP_PASS=upload
|
88
95
|
export BUNDLD_DEPOT_SCP_HOST=cache.example.com
|
data/lib/bundle_depot/cache.rb
CHANGED
data/lib/bundle_depot/version.rb
CHANGED