cartup 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CartBinaryUploader.gemspec +1 -15
- data/Gemfile.lock +1 -1
- data/exe/cartup +1 -1
- data/lib/CartBinaryUploader/version.rb +1 -1
- metadata +1 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4e392e1becd50c9bd8ac85ddaf5f6111e5d633e2
|
4
|
+
data.tar.gz: 8727b685bdd49f4fe33d2b9ea145d1fae66bd3b8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f4502d3aaec5ed3941b5c0a034f4685b244998ad35c2f4333546cff580ce96a5dbd49f86454d43e4c5f19993025ca3a84348edbf95fa7879e088f0db6ad05397
|
7
|
+
data.tar.gz: 13646a205ab23de8c8f08e4748e8302280ebe1ace82f1e96085fecdf54ac12cb035baa7afd411a3981ff35fa5805cee859e237643ebeea626c8ceeb1912025a0
|
data/CartBinaryUploader.gemspec
CHANGED
@@ -11,21 +11,7 @@ Gem::Specification.new do |spec|
|
|
11
11
|
|
12
12
|
spec.summary = %q{ This gem will help you to upload the carthage binaries a privates accounts like google cloud, s3 e etc. }
|
13
13
|
spec.description = <<-EOF
|
14
|
-
Cartup is the easyest way to share prebuilts Carthage frameworks between our projects
|
15
|
-
|
16
|
-
The main propose of this gem is uploading the Carthage prebuilts to a cloud
|
17
|
-
storage like, drive, onedrive, dropbox or google cloud. To know more how to make prebuilts with Carthage please follow
|
18
|
-
the link about how to do it: https://github.com/Carthage/Carthage#archive-prebuilt-frameworks-into-one-zip-file
|
19
|
-
|
20
|
-
Currently, the main problem is because only github projects could upload a prebuilts frameworks and distrubuite
|
21
|
-
them using a great github tool called "RELEASES"(https://help.github.com/articles/creating-releases/) automatically.
|
22
|
-
To people like me who the majority of our clients using Bitbucket the all process should be done manually. So you should
|
23
|
-
upload the prebuilts frameworks on some sort of cloud storage and manage the version using a JSON file and upload
|
24
|
-
manually and because that the gem was born! To the people like me who are a bit lazy and do not like to do manual job,
|
25
|
-
this is for you!!!
|
26
|
-
|
27
|
-
So, in a head line: Our gem wants to make the process of distribution of prebuild carthage binaries easier through the
|
28
|
-
most popular storage cloud.
|
14
|
+
Cartup is the easyest way to share prebuilts Carthage frameworks between our projects.
|
29
15
|
|
30
16
|
One big thanks for my friend and brother [Rafael Ferreira](https://github.com/RafaelPlantard) that make the initials
|
31
17
|
scripts(Shell and Ruby) and that's give me Ideia to bring it to a ruby class struct and RubyGem to distribute to every body!
|
data/Gemfile.lock
CHANGED
data/exe/cartup
CHANGED
@@ -9,7 +9,7 @@ COMMAND_HELP = "help"
|
|
9
9
|
command = ARGV[0]
|
10
10
|
|
11
11
|
helpDescription = <<-EOF
|
12
|
-
These are common
|
12
|
+
These are common Cartup commands used in some situations:
|
13
13
|
- init Create an empty cart_uploader.yaml
|
14
14
|
- run uploading the Carthage prebuilts to a cloud storage
|
15
15
|
- help show help instructions and list available subcommands
|
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.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Douglas Mendes
|
@@ -84,22 +84,6 @@ dependencies:
|
|
84
84
|
description: |2
|
85
85
|
Cartup is the easyest way to share prebuilts Carthage frameworks between our projects.
|
86
86
|
|
87
|
-
|
88
|
-
|
89
|
-
The main propose of this gem is uploading the Carthage prebuilts to a cloud
|
90
|
-
storage like, drive, onedrive, dropbox or google cloud. To know more how to make prebuilts with Carthage please follow
|
91
|
-
the link about how to do it: https://github.com/Carthage/Carthage#archive-prebuilt-frameworks-into-one-zip-file
|
92
|
-
|
93
|
-
Currently, the main problem is because only github projects could upload a prebuilts frameworks and distrubuite
|
94
|
-
them using a great github tool called "RELEASES"(https://help.github.com/articles/creating-releases/) automatically.
|
95
|
-
To people like me who the majority of our clients using Bitbucket the all process should be done manually. So you should
|
96
|
-
upload the prebuilts frameworks on some sort of cloud storage and manage the version using a JSON file and upload
|
97
|
-
manually and because that the gem was born! To the people like me who are a bit lazy and do not like to do manual job,
|
98
|
-
this is for you!!!
|
99
|
-
|
100
|
-
So, in a head line: Our gem wants to make the process of distribution of prebuild carthage binaries easier through the
|
101
|
-
most popular storage cloud.
|
102
|
-
|
103
87
|
One big thanks for my friend and brother [Rafael Ferreira](https://github.com/RafaelPlantard) that make the initials
|
104
88
|
scripts(Shell and Ruby) and that's give me Ideia to bring it to a ruby class struct and RubyGem to distribute to every body!
|
105
89
|
email:
|