cartup 0.1.6 → 0.1.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.DS_Store +0 -0
- data/.ruby-version +1 -0
- data/CartBinaryUploader.gemspec +14 -14
- data/Gemfile +1 -0
- data/Gemfile.lock +17 -1
- data/README.md +5 -5
- data/lib/CartBinaryUploader/version.rb +1 -1
- data/lib/cart_logger.rb +2 -2
- data/lib/cartup.rb +30 -30
- data/lib/cartup_command_helper.rb +16 -16
- data/lib/git_helper.rb +10 -10
- data/lib/google_cloud_storage.rb +68 -67
- data/logo/cartup_logo.png +0 -0
- metadata +6 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dcd6e089fd83e2932b3d0985f7e1cc9a51797bf0
|
4
|
+
data.tar.gz: 30e129a6649a51ed0d2eb1b9be25900b3ce6149b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b251cc6c6c72985f2b565e97ad0b531a3595d0116302416d5f71487da402ebac5c0deb8b732c71439e7bbabdb9982823573b767fbe8ad0c80a36f7efa1d38215
|
7
|
+
data.tar.gz: 5d55cd40037c9a67f5c02ec98c7fe5365e38074140254a75a0343ccf10c67c3fdb9311ac59a3ded25521bfc78a6c412e4058c555cc3b6b870fa2f0b40ff8ab62
|
data/.DS_Store
ADDED
Binary file
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.4.0
|
data/CartBinaryUploader.gemspec
CHANGED
@@ -1,36 +1,36 @@
|
|
1
1
|
|
2
|
-
lib = File.expand_path(
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
-
require
|
4
|
+
require 'CartBinaryUploader/version'
|
5
5
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
|
-
spec.name =
|
7
|
+
spec.name = 'cartup'
|
8
8
|
spec.version = CartBinaryUploader::VERSION
|
9
|
-
spec.authors = [
|
10
|
-
spec.email = [
|
9
|
+
spec.authors = ['Douglas Mendes', 'Rafael Ferreria']
|
10
|
+
spec.email = ['mendes-barreto@live.com', 'rafael.yami@hotmail.com']
|
11
11
|
spec.summary = %q{ This gem will help you to upload the carthage binaries a privates accounts like google cloud, s3 e etc. }
|
12
12
|
spec.description = <<-EOF
|
13
|
-
Cartup is the easyest way to share
|
13
|
+
Cartup is the easyest way to share prebuilt Carthage frameworks between projects.
|
14
14
|
EOF
|
15
15
|
|
16
|
-
spec.homepage =
|
17
|
-
spec.license =
|
16
|
+
spec.homepage = 'https://github.com/mendesbarreto/cartup.git'
|
17
|
+
spec.license = 'MIT'
|
18
18
|
|
19
19
|
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
20
20
|
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
21
21
|
if spec.respond_to?(:metadata)
|
22
|
-
spec.metadata[
|
22
|
+
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
|
23
23
|
else
|
24
|
-
raise
|
25
|
-
|
24
|
+
raise 'RubyGems 2.0 or newer is required to protect against ' \
|
25
|
+
'public gem pushes.'
|
26
26
|
end
|
27
27
|
|
28
28
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
29
29
|
f.match(%r{^(test|spec|features)/})
|
30
30
|
end
|
31
|
-
spec.bindir =
|
32
|
-
spec.executables = [
|
33
|
-
spec.require_paths = [
|
31
|
+
spec.bindir = 'exe'
|
32
|
+
spec.executables = ['cartup']
|
33
|
+
spec.require_paths = ['lib']
|
34
34
|
|
35
35
|
spec.add_development_dependency 'bundler', '~> 1.16'
|
36
36
|
spec.add_development_dependency 'rake', '~> 10.0'
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,13 +1,14 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
cartup (0.1.
|
4
|
+
cartup (0.1.7)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
8
8
|
specs:
|
9
9
|
addressable (2.5.2)
|
10
10
|
public_suffix (>= 2.0.2, < 4.0)
|
11
|
+
ast (2.4.0)
|
11
12
|
colorize (0.8.1)
|
12
13
|
declarative (0.0.10)
|
13
14
|
declarative-option (0.1.0)
|
@@ -53,19 +54,33 @@ GEM
|
|
53
54
|
multi_json (1.13.1)
|
54
55
|
multipart-post (2.0.0)
|
55
56
|
os (0.9.6)
|
57
|
+
parallel (1.12.1)
|
58
|
+
parser (2.5.0.2)
|
59
|
+
ast (~> 2.4.0)
|
60
|
+
powerpack (0.1.1)
|
56
61
|
public_suffix (3.0.1)
|
62
|
+
rainbow (3.0.0)
|
57
63
|
rake (10.5.0)
|
58
64
|
representable (3.0.4)
|
59
65
|
declarative (< 0.1.0)
|
60
66
|
declarative-option (< 0.2.0)
|
61
67
|
uber (< 0.2.0)
|
62
68
|
retriable (3.1.1)
|
69
|
+
rubocop (0.52.1)
|
70
|
+
parallel (~> 1.10)
|
71
|
+
parser (>= 2.4.0.2, < 3.0)
|
72
|
+
powerpack (~> 0.1)
|
73
|
+
rainbow (>= 2.2.2, < 4.0)
|
74
|
+
ruby-progressbar (~> 1.7)
|
75
|
+
unicode-display_width (~> 1.0, >= 1.0.1)
|
76
|
+
ruby-progressbar (1.9.0)
|
63
77
|
signet (0.8.1)
|
64
78
|
addressable (~> 2.3)
|
65
79
|
faraday (~> 0.9)
|
66
80
|
jwt (>= 1.5, < 3.0)
|
67
81
|
multi_json (~> 1.10)
|
68
82
|
uber (0.1.0)
|
83
|
+
unicode-display_width (1.3.0)
|
69
84
|
|
70
85
|
PLATFORMS
|
71
86
|
ruby
|
@@ -78,6 +93,7 @@ DEPENDENCIES
|
|
78
93
|
json (~> 2.1)
|
79
94
|
minitest (~> 5.0)
|
80
95
|
rake (~> 10.0)
|
96
|
+
rubocop (~> 0.52.1)
|
81
97
|
|
82
98
|
BUNDLED WITH
|
83
99
|
1.16.1
|
data/README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
![](logo/cartup_logo.png)
|
2
|
+
# Cartup
|
3
3
|
|
4
4
|
**Cartup** is the easyest way to share prebuilts [Carthage](https://github.com/Carthage/Carthage) frameworks between projects.
|
5
5
|
|
@@ -16,10 +16,10 @@ manually and because that the gem was born! To the people like me who are a bit
|
|
16
16
|
this is for you!!!
|
17
17
|
|
18
18
|
**So, in a head line: Our gem wants to make the process of distribution of prebuild carthage binaries easier through the
|
19
|
-
most
|
19
|
+
most populars storage clouds.**
|
20
20
|
|
21
|
-
*One big thanks for my friend and brother [Rafael Ferreira](https://github.com/RafaelPlantard) that
|
22
|
-
|
21
|
+
*One big thanks for my friend and brother [Rafael Ferreira](https://github.com/RafaelPlantard) that made the initial
|
22
|
+
script and that's give me idea to bring it to a ruby plugin and distribute to every body by RubyGem!*
|
23
23
|
|
24
24
|
## Supported Storage Clouds
|
25
25
|
* [Firebase Cloud Storage](https://firebase.google.com/docs/storage/?gclid=Cj0KCQiAzfrTBRC_ARIsAJ5ps0uB9qOHR9kDhzlqReNfQlhrRJH7gWwHRCbl-XQRIJEvt9jN6ROPdxQaAohIEALw_wcB)
|
data/lib/cart_logger.rb
CHANGED
@@ -14,11 +14,11 @@ module CartBinaryUploader
|
|
14
14
|
@logger
|
15
15
|
end
|
16
16
|
|
17
|
-
def
|
17
|
+
def log_info string
|
18
18
|
CartLogger.log.info string
|
19
19
|
end
|
20
20
|
|
21
|
-
def
|
21
|
+
def log_error string
|
22
22
|
CartLogger.log.error string.to_s.colorize(:color => :white, :background => :red)
|
23
23
|
end
|
24
24
|
|
data/lib/cartup.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
require
|
1
|
+
require 'CartBinaryUploader/version'
|
2
2
|
require 'fileutils'
|
3
3
|
require 'yaml'
|
4
4
|
require 'json'
|
@@ -10,34 +10,34 @@ require 'cart_logger'
|
|
10
10
|
|
11
11
|
module CartBinaryUploader
|
12
12
|
def self.run
|
13
|
-
config =
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
13
|
+
config = get_config
|
14
|
+
|
15
|
+
project_id = config.project.google.project_id
|
16
|
+
credentials_file = config.project.google.credentials_file
|
17
|
+
bucket_name = config.project.google.bucket
|
18
|
+
framework_name = config.project.framework.name
|
19
|
+
framework_version = config.project.framework.version
|
20
|
+
|
21
|
+
git_helper = GitHelper.new
|
22
|
+
|
23
|
+
google_cloud_storage = GoogleCloudStorage.new(project_id,
|
24
|
+
credentials_file,
|
25
|
+
bucket_name,
|
26
|
+
framework_name,
|
27
|
+
framework_version)
|
28
|
+
google_cloud_storage.upload_framework
|
29
|
+
git_helper.tag_to framework_version
|
30
|
+
git_helper.push
|
31
31
|
end
|
32
32
|
|
33
33
|
def self.init
|
34
|
-
CartBinaryUploader.
|
34
|
+
CartBinaryUploader.copy_template_yaml
|
35
35
|
end
|
36
36
|
|
37
|
-
def self.
|
38
|
-
|
39
|
-
|
40
|
-
CartBinaryUploader.copy_with_path
|
37
|
+
def self.copy_template_yaml
|
38
|
+
from_source_file = './lib/template.yaml'
|
39
|
+
to_destination_file = './cart_uploader.yaml'
|
40
|
+
CartBinaryUploader.copy_with_path from_source_file, to_destination_file
|
41
41
|
end
|
42
42
|
|
43
43
|
def self.copy_with_path(src, dst)
|
@@ -45,16 +45,16 @@ module CartBinaryUploader
|
|
45
45
|
FileUtils.cp(src, dst)
|
46
46
|
end
|
47
47
|
|
48
|
-
def self.
|
48
|
+
def self.get_config
|
49
49
|
begin
|
50
|
-
CartLogger.
|
50
|
+
CartLogger.log_info 'Creating project config'
|
51
51
|
path = FileUtils.pwd + '/cart_uploader.yaml'
|
52
|
-
|
53
|
-
object = JSON.parse(
|
54
|
-
CartLogger.
|
52
|
+
yaml_file = YAML.load_file(path)
|
53
|
+
object = JSON.parse(yaml_file.to_json, object_class: OpenStruct)
|
54
|
+
CartLogger.log_info 'project config Created'
|
55
55
|
object
|
56
56
|
rescue SystemCallError
|
57
|
-
CartLogger.
|
57
|
+
CartLogger.log_error 'Problem to find or pase yaml file'
|
58
58
|
exit
|
59
59
|
end
|
60
60
|
|
@@ -1,15 +1,15 @@
|
|
1
|
-
require
|
1
|
+
require 'cartup'
|
2
2
|
|
3
3
|
module CartBinaryUploader
|
4
4
|
class CartupCommandHelper
|
5
|
-
COMMAND_RUN =
|
6
|
-
COMMAND_INIT =
|
7
|
-
COMMAND_HELP =
|
5
|
+
COMMAND_RUN = 'run'.freeze
|
6
|
+
COMMAND_INIT = 'init'.freeze
|
7
|
+
COMMAND_HELP = 'help'.freeze
|
8
8
|
|
9
|
-
attr_reader :
|
9
|
+
attr_reader :help_description
|
10
10
|
|
11
11
|
def initialize
|
12
|
-
@
|
12
|
+
@help_description = <<-EOF
|
13
13
|
These are common Cartup commands used in some situations:
|
14
14
|
- init Create an empty cart_uploader.yaml
|
15
15
|
- run uploading the Carthage prebuilts to a cloud storage
|
@@ -20,19 +20,19 @@ module CartBinaryUploader
|
|
20
20
|
|
21
21
|
def handle(command)
|
22
22
|
case command
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
23
|
+
when COMMAND_RUN
|
24
|
+
CartBinaryUploader.run
|
25
|
+
when COMMAND_INIT
|
26
|
+
CartBinaryUploader.init
|
27
|
+
when COMMAND_HELP
|
28
|
+
print_helper
|
29
|
+
else
|
30
|
+
print_helper
|
31
31
|
end
|
32
32
|
end
|
33
33
|
|
34
|
-
def
|
35
|
-
puts @
|
34
|
+
def print_helper
|
35
|
+
puts @help_description
|
36
36
|
end
|
37
37
|
|
38
38
|
end
|
data/lib/git_helper.rb
CHANGED
@@ -2,25 +2,25 @@ require 'cart_logger'
|
|
2
2
|
|
3
3
|
class GitHelper
|
4
4
|
|
5
|
-
def
|
6
|
-
CartLogger.
|
5
|
+
def tag_to version
|
6
|
+
CartLogger.log_info "Tagging version to: #{version}"
|
7
7
|
begin
|
8
|
-
cmd = "git tag -f "
|
9
|
-
exec(
|
10
|
-
CartLogger.
|
8
|
+
cmd = "git tag -f #{version}"
|
9
|
+
exec(cmd)
|
10
|
+
CartLogger.log_info 'Version tagged'
|
11
11
|
rescue
|
12
|
-
CartLogger.
|
12
|
+
CartLogger.log_error 'Problem to generate tag on git'
|
13
13
|
end
|
14
14
|
end
|
15
15
|
|
16
16
|
def push
|
17
|
-
CartLogger.
|
17
|
+
CartLogger.log_info 'Pushing tag to Git '
|
18
18
|
begin
|
19
|
-
cmd =
|
19
|
+
cmd = 'git push --tags'
|
20
20
|
exec( cmd )
|
21
|
-
CartLogger.
|
21
|
+
CartLogger.log_info 'Tag pushed'
|
22
22
|
rescue
|
23
|
-
CartLogger.
|
23
|
+
CartLogger.log_error 'Problem to push tag on git'
|
24
24
|
end
|
25
25
|
|
26
26
|
end
|
data/lib/google_cloud_storage.rb
CHANGED
@@ -7,108 +7,109 @@ require 'cart_logger'
|
|
7
7
|
module CartBinaryUploader
|
8
8
|
class GoogleCloudStorage
|
9
9
|
|
10
|
-
FRAMEWORK_EXTENSION_NAME =
|
11
|
-
JSON_EXTENSION_NAME =
|
12
|
-
JSON_EXTENSION_ZIP =
|
10
|
+
FRAMEWORK_EXTENSION_NAME = '.framework'.freeze
|
11
|
+
JSON_EXTENSION_NAME = '.json'.freeze
|
12
|
+
JSON_EXTENSION_ZIP = '.zip'.freeze
|
13
13
|
|
14
|
-
attr_accessor :
|
15
|
-
attr_accessor :
|
16
|
-
attr_accessor :
|
17
|
-
attr_accessor :
|
18
|
-
attr_accessor :
|
14
|
+
attr_accessor :project_id
|
15
|
+
attr_accessor :credentials_file_path
|
16
|
+
attr_accessor :bucket_name
|
17
|
+
attr_accessor :framework_name
|
18
|
+
attr_accessor :framework_version
|
19
19
|
|
20
20
|
attr_accessor :storage
|
21
21
|
attr_accessor :bucket
|
22
22
|
|
23
|
-
def initialize(
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
@
|
29
|
-
|
30
|
-
|
23
|
+
def initialize(project_id,
|
24
|
+
credentials_file,
|
25
|
+
bucket_name,
|
26
|
+
framework_name,
|
27
|
+
framework_version )
|
28
|
+
@project_id = project_id
|
29
|
+
@credentials_file_path = credentials_file
|
30
|
+
@bucket_name = bucket_name
|
31
|
+
@framework_name = framework_name
|
32
|
+
@framework_version = framework_version
|
33
|
+
create_storage
|
34
|
+
create_bucket
|
31
35
|
end
|
32
36
|
|
33
|
-
def
|
34
|
-
CartLogger.
|
35
|
-
@storage = Google::Cloud::Storage.new(
|
36
|
-
|
37
|
-
credentials: @credentialsFilePath
|
38
|
-
)
|
37
|
+
def create_storage
|
38
|
+
CartLogger.log_info "Creating storage with id: #{@project_id} path: #{@credentials_file_path}"
|
39
|
+
@storage = Google::Cloud::Storage.new(project_id: @project_id,
|
40
|
+
credentials: @credentials_file_path)
|
39
41
|
end
|
40
42
|
|
41
|
-
def
|
42
|
-
CartLogger.
|
43
|
-
@bucket = @storage.bucket @
|
43
|
+
def create_bucket
|
44
|
+
CartLogger.log_info "Creating bucket name: #{@bucket_name}"
|
45
|
+
@bucket = @storage.bucket @bucket_name
|
44
46
|
end
|
45
47
|
|
46
|
-
def
|
47
|
-
CartLogger.
|
48
|
-
|
49
|
-
|
50
|
-
|
48
|
+
def upload_framework
|
49
|
+
CartLogger.log_info "Prepering to upload file to google cloud"
|
50
|
+
framework_name_source = @framework_name + FRAMEWORK_EXTENSION_NAME + JSON_EXTENSION_ZIP
|
51
|
+
framework_name_destination = @framework_name + FRAMEWORK_EXTENSION_NAME + "." + @framework_version + JSON_EXTENSION_ZIP
|
52
|
+
json_path = @framework_name + JSON_EXTENSION_NAME
|
51
53
|
|
52
|
-
CartLogger.
|
53
|
-
CartLogger.
|
54
|
-
CartLogger.
|
54
|
+
CartLogger.log_info "Framework Source: #{framework_name_source}"
|
55
|
+
CartLogger.log_info "Framework Destination: #{framework_name_destination}"
|
56
|
+
CartLogger.log_info "JSON Path: #{json_path}"
|
55
57
|
|
56
|
-
unless !
|
57
|
-
throw :the_version_file_already_exists, "The current version:
|
58
|
+
unless !has_file_on_google_cloud framework_name_destination
|
59
|
+
throw :the_version_file_already_exists, "The current version: #{@framework_version} already exists on google cloud"
|
58
60
|
else
|
59
|
-
CartLogger.
|
60
|
-
|
61
|
+
CartLogger.log_info "File version #{@framework_version} not exists yet, starting generate file on google cloud"
|
62
|
+
json_file = download_config_json_file(json_path)
|
61
63
|
|
62
|
-
if
|
63
|
-
throw :could_not_download_json_file, "JSON With name: "
|
64
|
+
if json_file.nil?
|
65
|
+
throw :could_not_download_json_file, "JSON With name: #{json_path}"
|
64
66
|
end
|
65
67
|
|
66
|
-
|
67
|
-
|
68
|
+
framework_file = bucket.create_file(framework_name_source, framework_name_destination)
|
69
|
+
shared_url = framework_file.signed_url(method: 'GET', expires: 3.154e+8)
|
68
70
|
|
69
|
-
|
70
|
-
|
71
|
+
json_object = load_json_object json_path
|
72
|
+
json_object[@framework_version] = shared_url
|
71
73
|
|
72
|
-
|
74
|
+
save_json_object(json_path, json_object)
|
73
75
|
|
74
|
-
|
76
|
+
upload_json json_path
|
75
77
|
end
|
76
78
|
end
|
77
79
|
|
78
|
-
def
|
79
|
-
CartLogger.
|
80
|
-
|
81
|
-
!
|
80
|
+
def has_file_on_google_cloud file
|
81
|
+
CartLogger.log_info "Verifying if the version file #{file} already exists"
|
82
|
+
bucket_file = bucket.file file
|
83
|
+
!bucket_file.nil?
|
82
84
|
end
|
83
85
|
|
84
|
-
def
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
jsonFile
|
86
|
+
def download_config_json_file(from_file)
|
87
|
+
json_file = @bucket.file from_file
|
88
|
+
json_file.download from_file
|
89
|
+
json_file
|
89
90
|
end
|
90
91
|
|
91
|
-
def
|
92
|
-
CartLogger.
|
93
|
-
json = File.read(
|
92
|
+
def load_json_object(json_path)
|
93
|
+
CartLogger.log_info 'Loading JSON file'
|
94
|
+
json = File.read(json_path)
|
94
95
|
object = JSON.parse(json)
|
95
|
-
CartLogger.
|
96
|
-
CartLogger.
|
96
|
+
CartLogger.log_info object
|
97
|
+
CartLogger.log_info 'JSON Loaded'
|
97
98
|
object
|
98
99
|
end
|
99
100
|
|
100
|
-
def
|
101
|
-
|
102
|
-
CartLogger.
|
103
|
-
File.write(
|
104
|
-
CartLogger.
|
101
|
+
def save_json_object(json_path, json_object)
|
102
|
+
binary_json = JSON.pretty_generate(json_object)
|
103
|
+
CartLogger.log_info "Saving JSON Object in: #{json_path} JSON: #{binary_json}"
|
104
|
+
File.write(json_path, binary_json)
|
105
|
+
CartLogger.log_info 'JSON Saved'
|
105
106
|
end
|
106
107
|
|
107
108
|
|
108
|
-
def
|
109
|
-
CartLogger.
|
109
|
+
def upload_json jsonPath
|
110
|
+
CartLogger.log_info 'Starting upload file to google cloud'
|
110
111
|
@bucket.create_file(jsonPath, jsonPath)
|
111
|
-
CartLogger.
|
112
|
+
CartLogger.log_info 'Uploaded complete'
|
112
113
|
end
|
113
114
|
|
114
115
|
end
|
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cartup
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Douglas Mendes
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date: 2018-
|
12
|
+
date: 2018-03-05 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -95,7 +95,7 @@ dependencies:
|
|
95
95
|
- - "~>"
|
96
96
|
- !ruby/object:Gem::Version
|
97
97
|
version: 0.8.1
|
98
|
-
description: " Cartup is the easyest way to share
|
98
|
+
description: " Cartup is the easyest way to share prebuilt Carthage frameworks
|
99
99
|
between projects.\n"
|
100
100
|
email:
|
101
101
|
- mendes-barreto@live.com
|
@@ -105,7 +105,9 @@ executables:
|
|
105
105
|
extensions: []
|
106
106
|
extra_rdoc_files: []
|
107
107
|
files:
|
108
|
+
- ".DS_Store"
|
108
109
|
- ".gitignore"
|
110
|
+
- ".ruby-version"
|
109
111
|
- CODE_OF_CONDUCT.md
|
110
112
|
- CartBinaryUploader.gemspec
|
111
113
|
- Gemfile
|
@@ -124,6 +126,7 @@ files:
|
|
124
126
|
- lib/git_helper.rb
|
125
127
|
- lib/google_cloud_storage.rb
|
126
128
|
- lib/template.yaml
|
129
|
+
- logo/cartup_logo.png
|
127
130
|
homepage: https://github.com/mendesbarreto/cartup.git
|
128
131
|
licenses:
|
129
132
|
- MIT
|