embulk-input-azure_blob_storage 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 17b299c3fb74133d7d96a7f4344cd538730128cb
|
4
|
+
data.tar.gz: 6d0d366c4cb843691f6f81424c1d67024a92e498
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 613101c13468e14e000114cba31b0cdf376d59f8738b954fa3db6aa016f527af9f3f3de5104f394cd4bdb724442ee19f14d3449af38047daf7ea8eecfcc88413
|
7
|
+
data.tar.gz: 08b248ede551cd743e1c86662d0bc4e43862adba57994a65759f1e4f099cc172d626d35194bf79691f6bc19ca63e8549fdeebec21d234b54dc28a7a22ee99812
|
data/ChangeLog
ADDED
data/build.gradle
CHANGED
@@ -103,7 +103,7 @@ public class AzureBlobStorageFileInputPlugin
|
|
103
103
|
|
104
104
|
private static CloudBlobClient newAzureClient(String accountName, String accountKey)
|
105
105
|
{
|
106
|
-
String connectionString = "DefaultEndpointsProtocol=
|
106
|
+
String connectionString = "DefaultEndpointsProtocol=https;" +
|
107
107
|
"AccountName=" + accountName + ";" +
|
108
108
|
"AccountKey=" + accountKey;
|
109
109
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: embulk-input-azure_blob_storage
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Satoshi Akama
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-10-
|
11
|
+
date: 2015-10-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
@@ -46,9 +46,9 @@ extensions: []
|
|
46
46
|
extra_rdoc_files: []
|
47
47
|
files:
|
48
48
|
- .gitignore
|
49
|
+
- ChangeLog
|
49
50
|
- README.md
|
50
51
|
- build.gradle
|
51
|
-
- embulk-input-azure_blob_storage.gemspec
|
52
52
|
- gradle/wrapper/gradle-wrapper.jar
|
53
53
|
- gradle/wrapper/gradle-wrapper.properties
|
54
54
|
- gradlew
|
@@ -58,7 +58,7 @@ files:
|
|
58
58
|
- src/test/java/org/embulk/input/azure_blob_storage/TestAzureBlobStorageFileInputPlugin.java
|
59
59
|
- classpath/azure-storage-4.0.0.jar
|
60
60
|
- classpath/commons-lang3-3.4.jar
|
61
|
-
- classpath/embulk-input-azure_blob_storage-0.1.
|
61
|
+
- classpath/embulk-input-azure_blob_storage-0.1.1.jar
|
62
62
|
- classpath/jackson-core-2.6.0.jar
|
63
63
|
homepage: https://github.com/sakama/embulk-input-azure_blob_storage
|
64
64
|
licenses:
|
@@ -1,18 +0,0 @@
|
|
1
|
-
|
2
|
-
Gem::Specification.new do |spec|
|
3
|
-
spec.name = "embulk-input-azure_blob_storage"
|
4
|
-
spec.version = "0.1.0"
|
5
|
-
spec.authors = ["Satoshi Akama"]
|
6
|
-
spec.summary = %[Microsoft Azure blob Storage file input plugin for Embulk]
|
7
|
-
spec.description = %[Reads files stored on Microsoft Azure blob Storage.]
|
8
|
-
spec.email = ["satoshiakama@gmail.com"]
|
9
|
-
spec.licenses = ["Apache-2.0"]
|
10
|
-
spec.homepage = "https://github.com/sakama/embulk-input-azure_blob_storage"
|
11
|
-
|
12
|
-
spec.files = `git ls-files`.split("\n") + Dir["classpath/*.jar"]
|
13
|
-
spec.test_files = spec.files.grep(%r"^(test|spec)/")
|
14
|
-
spec.require_paths = ["lib"]
|
15
|
-
|
16
|
-
spec.add_development_dependency 'bundler', ['~> 1.0']
|
17
|
-
spec.add_development_dependency 'rake', ['>= 10.0']
|
18
|
-
end
|