embulk-output-slack_file_upload 0.1.1 → 0.2.0

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: d50cc8c7f266f97d14ae9b5a181ddc24ce06582d
4
- data.tar.gz: 6e63a89abbf0724d0bf8d0e24b576a4318357377
3
+ metadata.gz: e39d5363cb981eaa142a2571893d8f52c14abb89
4
+ data.tar.gz: d302218ec63572d45ceac32244665900ef046972
5
5
  SHA512:
6
- metadata.gz: 59446826ee2de5c2990e8bd6f2c3ce4b6d3277618f646ddfcd27972a54a3c869452d57d48498c960a11c37705c720d85ee7a9d7f26bc89be3678fe0c57bae7b8
7
- data.tar.gz: b8bc85067c7a43bc3fa7ca9465330d34b63332bfaa4e9df402cb9dd16d16d9605be118d809e409ac87a8a47a035cc8eae7c5917710b63bccb7168b0d4ab6e5f0
6
+ metadata.gz: 73e24cdef2142e2b39e2d15f9d00cf187f75377968f647615933d31f2ec069a40426fb0ed354c70800dac2152b33f62149865b3bd01f7cccecab009eeb63badc
7
+ data.tar.gz: 3e10b4b85e3807b5c49ba59e8289bd28ee52dbf50fdf1a23aeb86160ac32cd4867319c0ab1f9031f287de9db0863c1e4ea6d593938faf6cb85ce2e0559e2777a
@@ -13,14 +13,14 @@ configurations {
13
13
  provided
14
14
  }
15
15
 
16
- version = "0.1.1"
16
+ version = "0.2.0"
17
17
 
18
18
  sourceCompatibility = 1.7
19
19
  targetCompatibility = 1.7
20
20
 
21
21
  dependencies {
22
- compile "org.embulk:embulk-core:0.8.18"
23
- compile "org.embulk:embulk-standards:0.8.18"
22
+ compile "org.embulk:embulk-core:0.9.15"
23
+ compile "org.embulk:embulk-standards:0.9.15"
24
24
  compile "com.github.seratch:jslack:1.0.8"
25
25
  testCompile "junit:junit:4.+"
26
26
  }
@@ -80,7 +80,7 @@ Gem::Specification.new do |spec|
80
80
  spec.description = %[Upload files to Slack.]
81
81
  spec.email = ["chemtrails.t@gmail.com"]
82
82
  spec.licenses = ["MIT"]
83
- spec.homepage = "https://github.com/takumakanari/embulk-output-slack_file_upload"
83
+ spec.homepage = "https://github.com/chemtrails.t/embulk-output-slack_file_upload"
84
84
 
85
85
  spec.files = `git ls-files`.split("\n") + Dir["classpath/*.jar"]
86
86
  spec.test_files = spec.files.grep(%r"^(test|spec)/")
@@ -1,6 +1,5 @@
1
- #Sat Mar 18 16:23:16 JST 2017
2
1
  distributionBase=GRADLE_USER_HOME
3
2
  distributionPath=wrapper/dists
4
3
  zipStoreBase=GRADLE_USER_HOME
5
4
  zipStorePath=wrapper/dists
6
- distributionUrl=https\://services.gradle.org/distributions/gradle-3.2.1-all.zip
5
+ distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-bin.zip
data/gradlew CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env bash
1
+ #!/usr/bin/env sh
2
2
 
3
3
  ##############################################################################
4
4
  ##
@@ -33,11 +33,11 @@ DEFAULT_JVM_OPTS=""
33
33
  # Use the maximum available, or set MAX_FD != -1 to use that value.
34
34
  MAX_FD="maximum"
35
35
 
36
- warn ( ) {
36
+ warn () {
37
37
  echo "$*"
38
38
  }
39
39
 
40
- die ( ) {
40
+ die () {
41
41
  echo
42
42
  echo "$*"
43
43
  echo
@@ -154,16 +154,19 @@ if $cygwin ; then
154
154
  esac
155
155
  fi
156
156
 
157
- # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules
158
- function splitJvmOpts() {
159
- JVM_OPTS=("$@")
157
+ # Escape application args
158
+ save () {
159
+ for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
160
+ echo " "
160
161
  }
161
- eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS
162
- JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME"
162
+ APP_ARGS=$(save "$@")
163
+
164
+ # Collect all arguments for the java command, following the shell quoting and substitution rules
165
+ eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
163
166
 
164
167
  # by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
165
- if [[ "$(uname)" == "Darwin" ]] && [[ "$HOME" == "$PWD" ]]; then
168
+ if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
166
169
  cd "$(dirname "$0")"
167
170
  fi
168
171
 
169
- exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"
172
+ exec "$JAVACMD" "$@"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: embulk-output-slack_file_upload
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - takumakanari
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-03-27 00:00:00.000000000 Z
11
+ date: 2019-03-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -64,30 +64,30 @@ files:
64
64
  - classpath/bval-core-0.5.jar
65
65
  - classpath/bval-jsr303-0.5.jar
66
66
  - classpath/commons-beanutils-core-1.8.3.jar
67
+ - classpath/commons-cli-1.3.1.jar
68
+ - classpath/commons-collections-3.2.1.jar
67
69
  - classpath/commons-compress-1.10.jar
68
- - classpath/commons-lang3-3.1.jar
69
- - classpath/embulk-core-0.8.18.jar
70
- - classpath/embulk-output-slack_file_upload-0.1.1.jar
71
- - classpath/embulk-standards-0.8.18.jar
70
+ - classpath/commons-lang-2.4.jar
71
+ - classpath/commons-lang3-3.4.jar
72
+ - classpath/embulk-core-0.9.15.jar
73
+ - classpath/embulk-output-slack_file_upload-0.2.0.jar
74
+ - classpath/embulk-standards-0.9.15.jar
72
75
  - classpath/gson-2.8.0.jar
73
76
  - classpath/guava-18.0.jar
74
77
  - classpath/guice-4.0.jar
75
- - classpath/guice-bootstrap-0.1.1.jar
76
78
  - classpath/guice-multibindings-4.0.jar
77
79
  - classpath/icu4j-54.1.1.jar
78
- - classpath/jackson-annotations-2.5.3.jar
79
- - classpath/jackson-core-2.5.3.jar
80
- - classpath/jackson-databind-2.5.3.jar
81
- - classpath/jackson-datatype-guava-2.5.3.jar
82
- - classpath/jackson-datatype-joda-2.5.3.jar
83
- - classpath/jackson-module-guice-2.5.3.jar
84
- - classpath/jansi-1.11.jar
80
+ - classpath/jackson-annotations-2.6.7.jar
81
+ - classpath/jackson-core-2.6.7.jar
82
+ - classpath/jackson-databind-2.6.7.jar
83
+ - classpath/jackson-datatype-guava-2.6.7.jar
84
+ - classpath/jackson-datatype-jdk8-2.6.7.jar
85
+ - classpath/jackson-datatype-joda-2.6.7.jar
86
+ - classpath/jackson-module-guice-2.6.7.jar
85
87
  - classpath/javax.inject-1.jar
86
88
  - classpath/joda-time-2.9.2.jar
87
- - classpath/jruby-complete-9.1.5.0.jar
89
+ - classpath/jruby-complete-9.1.15.0.jar
88
90
  - classpath/jslack-1.0.8.jar
89
- - classpath/logback-classic-1.1.3.jar
90
- - classpath/logback-core-1.1.3.jar
91
91
  - classpath/msgpack-core-0.8.11.jar
92
92
  - classpath/netty-buffer-4.0.44.Final.jar
93
93
  - classpath/netty-common-4.0.44.Final.jar
@@ -95,9 +95,10 @@ files:
95
95
  - classpath/okio-1.11.0.jar
96
96
  - classpath/slf4j-api-1.7.22.jar
97
97
  - classpath/slice-0.9.jar
98
- - classpath/snakeyaml-1.14.jar
98
+ - classpath/snakeyaml-1.18.jar
99
99
  - classpath/validation-api-1.1.0.Final.jar
100
- homepage: https://github.com/takumakanari/embulk-output-slack_file_upload
100
+ - classpath/velocity-1.7.jar
101
+ homepage: https://github.com/chemtrails.t/embulk-output-slack_file_upload
101
102
  licenses:
102
103
  - MIT
103
104
  metadata: {}