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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 73f25b7f3faf2752a706604302019b44055064b6
4
- data.tar.gz: 9f5f12a1ab98e03619bb977205573639d5aee282
3
+ metadata.gz: 6f9940c633d6441d435a3191d92f5d6d90b32c88
4
+ data.tar.gz: 5616e2c9f1154be5a8833d5a3d0863c4b9616cf7
5
5
  SHA512:
6
- metadata.gz: 9461791d5b6d4e6ba87e2426fb36db02697d8288bc3b84776a2155e8a71b6550e1761cd5d9df0f891fdc69a991065cd304ac18cbfedc5d5afec7549b3776dfcf
7
- data.tar.gz: a5286795ede05c4d3a694350c7420d3405cd778a5aaa2f84e7f1ee7d9ec9ba938ecc0b4ad90bc220772df30373131d00a007990686b54755df1dec4bd9ee6256
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` file from the current working directory and will install the cache archive in `PATH/TO/MY/PROJECT/Carthage/Build`.
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
 
@@ -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
@@ -1,3 +1,3 @@
1
1
  module CarthageCache
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  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.2
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-10 00:00:00.000000000 Z
11
+ date: 2015-11-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler