carthage_cache 0.1.2 → 0.1.3
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/README.md +1 -1
- data/lib/carthage_cache.rb +1 -1
- data/lib/carthage_cache/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6f9940c633d6441d435a3191d92f5d6d90b32c88
|
|
4
|
+
data.tar.gz: 5616e2c9f1154be5a8833d5a3d0863c4b9616cf7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7515d3b07cd9014fc08588496b99625391cf35826e1252697c21c3cb9f1d58e4e19b8e0e2217e7b55d99f020ea0122737c299160a8c7e82f59b384da9302249a
|
|
7
|
+
data.tar.gz: 04f78b7b5ef3f5b374261ddefe5f4d08c0d718241bf22449f75bc0cdf08f9c6c24467bd4dfffdc993a63e7e504ed591b3883cf2c4e27d35a199b826ea98cac69
|
data/README.md
CHANGED
|
@@ -88,7 +88,7 @@ Will try to read the `Cartfile.resolved` file from the current working directory
|
|
|
88
88
|
```
|
|
89
89
|
carthage_cache install PATH/TO/MY/PROJECT
|
|
90
90
|
```
|
|
91
|
-
Will try to read the `PATH/TO/MY/PROJECT/Cartfile.resolved`
|
|
91
|
+
Will try to read the `PATH/TO/MY/PROJECT/Cartfile.resolved` and will install the cache archive in `PATH/TO/MY/PROJECT/Carthage/Build`.
|
|
92
92
|
|
|
93
93
|
|
|
94
94
|
|
data/lib/carthage_cache.rb
CHANGED
|
@@ -24,7 +24,7 @@ module CarthageCache
|
|
|
24
24
|
def initialize(project_path, verbose, config)
|
|
25
25
|
@terminal = Terminal.new(verbose)
|
|
26
26
|
@archiver = Archiver.new
|
|
27
|
-
@configurator = Configurator.new(project_path)
|
|
27
|
+
@configurator = Configurator.new(project_path, config)
|
|
28
28
|
@repository = Repository.new(configurator.config[:bucket_name], configurator.config[:aws_s3_client_options])
|
|
29
29
|
@project = Project.new(project_path, CACHE_DIR_NAME, terminal)
|
|
30
30
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: carthage_cache
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Guido Marucci Blas
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-11-
|
|
11
|
+
date: 2015-11-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|