condensr 0.1.1 → 0.1.2
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/.env +10 -10
- data/lib/condensr.rb +3 -2
- data/lib/condensr/version.rb +1 -1
- metadata +2 -3
- data/condensr-0.1.0.gem +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ef279cc079e507cb477c818ba6e9d79b1e51c6c7
|
4
|
+
data.tar.gz: 408bc86f7e87fb6baca3fcf42dac31771f757eef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fcc8c88b263939352ec7f6e28ada896c0266eb1f81e13d8a922e49a5bdb49ea5b27fa35a86e3d0fef8d98a2cfd0c7b9e4c2a9b2d21fd0c4703660d743973d3fc
|
7
|
+
data.tar.gz: 897fb36cbfbedbcef4bb2bc5a81c175f886336a5ef55fe71fe4bbafa67559dcda029017f99d82697d9d5b1457e5e122aa36ecde95a708563e1fa04b874e58162
|
data/.env
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
# export environment variables
|
2
|
-
ACCESS_KEY_ID=
|
3
|
-
SECRET_ACCESS_KEY=
|
4
|
-
AWS_REGION=
|
5
|
-
AWS_BUCKET=
|
6
|
-
PROJECT_ID=
|
7
|
-
KEY_FILE=
|
8
|
-
GCLOUD_BUCKET=
|
9
|
-
ACL_TYPE=
|
10
|
-
TEST_FILE_URL=
|
11
|
-
DESTINATION_NAME=
|
2
|
+
ACCESS_KEY_ID=AKIAJQ2EZCPVL3LRYJ5A
|
3
|
+
SECRET_ACCESS_KEY=UTGCsfBTmLWihVwgA/DqnAeaBmEnKKuDLLb/OH1M
|
4
|
+
AWS_REGION=us-west-2
|
5
|
+
AWS_BUCKET=ago.go
|
6
|
+
PROJECT_ID=stoked-folder-603
|
7
|
+
KEY_FILE="../../test-node-app/newkey.json"
|
8
|
+
GCLOUD_BUCKET=condensr-bucket
|
9
|
+
ACL_TYPE=private
|
10
|
+
TEST_FILE_URL="https://s3-us-west-2.amazonaws.com/ago.go/IMG_20150729_131614.png"
|
11
|
+
DESTINATION_NAME=anynew/starlight
|
data/lib/condensr.rb
CHANGED
@@ -4,7 +4,7 @@ require "condensr/exceptions"
|
|
4
4
|
require "httparty"
|
5
5
|
require "aws-sdk"
|
6
6
|
require "gcloud"
|
7
|
-
require
|
7
|
+
require "pathname"
|
8
8
|
|
9
9
|
DEFAULT_ACL = 'private'
|
10
10
|
|
@@ -53,8 +53,9 @@ class Condensr
|
|
53
53
|
options[:file_name] = Condensr.extract_file_name(options[:file_url])
|
54
54
|
options[:destination_name] = options[:destination_name].empty? ? options[:file_name] : options[:destination_name]
|
55
55
|
file_path = download(options)
|
56
|
-
upload(options, file_path)
|
56
|
+
output = upload(options, file_path)
|
57
57
|
clear_file(file_path)
|
58
|
+
output
|
58
59
|
end
|
59
60
|
|
60
61
|
|
data/lib/condensr/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: condensr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Olalekan Sogunle
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-02-
|
11
|
+
date: 2016-02-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -125,7 +125,6 @@ files:
|
|
125
125
|
- Rakefile
|
126
126
|
- bin/console
|
127
127
|
- bin/setup
|
128
|
-
- condensr-0.1.0.gem
|
129
128
|
- condensr.gemspec
|
130
129
|
- lib/condensr.rb
|
131
130
|
- lib/condensr/exceptions.rb
|
data/condensr-0.1.0.gem
DELETED
Binary file
|