build.gradle in embulk-parser-jsonpath-0.1.0 vs build.gradle in embulk-parser-jsonpath-0.1.1
- old
+ new
@@ -12,11 +12,11 @@
}
configurations {
provided
}
-version = "0.1.0"
+version = "0.1.1"
sourceCompatibility = 1.7
targetCompatibility = 1.7
dependencies {
@@ -89,12 +89,12 @@
doLast { gemspecFile.write($/
Gem::Specification.new do |spec|
spec.name = "${project.name}"
spec.version = "${project.version}"
spec.authors = ["Hiroyuki Sato"]
- spec.summary = %[Jsonpath parser plugin for Embulk]
- spec.description = %[Parses Jsonpath files read by other file input plugins.]
+ spec.summary = %[JSON parser with JSONPath plugin for Embulk]
+ spec.description = %[Parses JSON files with JSONPath read by other file input plugins.]
spec.email = ["hiroysato@gmail.com"]
spec.licenses = ["MIT"]
spec.homepage = "https://github.com/hiroyuki-sato/embulk-parser-jsonpath"
spec.files = `git ls-files`.split("\n") + Dir["classpath/*.jar"]
@@ -102,9 +102,11 @@
spec.require_paths = ["lib"]
#spec.add_dependency 'YOUR_GEM_DEPENDENCY', ['~> YOUR_GEM_DEPENDENCY_VERSION']
spec.add_development_dependency 'bundler', ['~> 1.0']
spec.add_development_dependency 'rake', ['>= 10.0']
+ spec.add_dependency 'jsonpath', ['~> 0.5.8'] # for guess
+ spec.add_dependency 'json', ['~> 2.0.2'] # for guess
end
/$)
}
}
clean { delete "${project.name}.gemspec" }