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: 5cba152c50dbcb32fdafe2a64b65f2c0a9e82558
4
- data.tar.gz: 634d95bfb9102801640a57fd06ee4466d779439c
3
+ metadata.gz: 17b299c3fb74133d7d96a7f4344cd538730128cb
4
+ data.tar.gz: 6d0d366c4cb843691f6f81424c1d67024a92e498
5
5
  SHA512:
6
- metadata.gz: 735c5cfe513d77d0d2f0b69b9d86f898742d2b1907968410ebecb56b9e58eda7e69fa4a03b747049006ba5e527c16fb482473e4b64731c6ae5c496760fa120a9
7
- data.tar.gz: b8488a1dba1362a38f2b18b833d74312c1c760878b090bfea2824a836912a3775000743689f38fcc41efc45fc799dabbc408e94d3c0819ba7293433ef6aa741e
6
+ metadata.gz: 613101c13468e14e000114cba31b0cdf376d59f8738b954fa3db6aa016f527af9f3f3de5104f394cd4bdb724442ee19f14d3449af38047daf7ea8eecfcc88413
7
+ data.tar.gz: 08b248ede551cd743e1c86662d0bc4e43862adba57994a65759f1e4f099cc172d626d35194bf79691f6bc19ca63e8549fdeebec21d234b54dc28a7a22ee99812
@@ -0,0 +1,4 @@
1
+ Release 0.1.1 - 2015-10-11
2
+
3
+ * Change 'DefaultEndpointsProtocol' from http to https
4
+ * Specify targetCompatibility = 1.7
@@ -12,7 +12,10 @@ configurations {
12
12
  provided
13
13
  }
14
14
 
15
- version = "0.1.0"
15
+ sourceCompatibility = 1.7
16
+ targetCompatibility = 1.7
17
+
18
+ version = "0.1.1"
16
19
 
17
20
  dependencies {
18
21
  compile "org.embulk:embulk-core:0.7.5"
@@ -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=http;" +
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.0
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-10 00:00:00.000000000 Z
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.0.jar
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