languagetool 1.0.0 → 1.0.1
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/Gemfile +2 -0
- data/Gemfile.lock +3 -3
- data/README.md +0 -4
- data/Rakefile +7 -7
- data/VERSION +1 -1
- data/languagetool.gemspec +4 -4
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: adc4d4972519a14a47d59f1ae7ed291e7c7dd48a
|
|
4
|
+
data.tar.gz: 91b24c8c045b43a38a4aaea54879260e7b9df03b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 873b83ba6caa33860d7d5064226c79eda3ab81dbdafd31c298c51eab31eb4c337902f2d2b33c00918ab7ea6c1cb14fe41edfda96d4e4e3adcb6c4ccd7a1852f1
|
|
7
|
+
data.tar.gz: 1f5936bdc65e09780568b0d31a3727c4452972a1f4f6171fddb537999fe6ab0cdab011d8f4b56ae7a4fa49a020b73d7f6a11200a336d053424d1ab97fc66bbdd
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
GEM
|
|
2
2
|
remote: https://rubygems.org/
|
|
3
3
|
specs:
|
|
4
|
-
activesupport (5.0.0)
|
|
4
|
+
activesupport (5.0.0.1)
|
|
5
5
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
6
6
|
i18n (~> 0.7)
|
|
7
7
|
minitest (~> 5.1)
|
|
@@ -61,7 +61,7 @@ GEM
|
|
|
61
61
|
multi_xml (~> 0.5)
|
|
62
62
|
rack (>= 1.2, < 3)
|
|
63
63
|
pkg-config (1.1.7)
|
|
64
|
-
power_assert (0.
|
|
64
|
+
power_assert (0.3.0)
|
|
65
65
|
rack (2.0.1)
|
|
66
66
|
rake (11.2.2)
|
|
67
67
|
rdoc (3.12.2)
|
|
@@ -82,7 +82,7 @@ GEM
|
|
|
82
82
|
json (>= 1.8, < 3)
|
|
83
83
|
simplecov-html (~> 0.10.0)
|
|
84
84
|
simplecov-html (0.10.0)
|
|
85
|
-
test-unit (3.
|
|
85
|
+
test-unit (3.2.1)
|
|
86
86
|
power_assert
|
|
87
87
|
thread_safe (0.3.5)
|
|
88
88
|
tzinfo (1.2.2)
|
data/README.md
CHANGED
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
# languagetool
|
|
2
2
|
|
|
3
|
-
<div align="center">
|
|
4
|
-

|
|
5
|
-
<div align="left">
|
|
6
|
-
|
|
7
3
|
A simple ruby wrapper for the LanguageTool HTTP API. This gem is only compatible with LanguageTool 3.4 and above.
|
|
8
4
|
|
|
9
5
|
Please visit the this [link](https://languagetool.org/http-api/swagger-ui/#/default) for more information about the public LanguageTool HTTP API, and its allowed parameters.
|
data/Rakefile
CHANGED
|
@@ -15,12 +15,12 @@ require 'jeweler'
|
|
|
15
15
|
Jeweler::Tasks.new do |gem|
|
|
16
16
|
# gem is a Gem::Specification... see http://guides.rubygems.org/specification-reference/ for more options
|
|
17
17
|
gem.name = "languagetool"
|
|
18
|
-
gem.homepage = "https://
|
|
19
|
-
gem.license =
|
|
18
|
+
gem.homepage = "https://github.com/wikiti/languagetool-ruby"
|
|
19
|
+
gem.license = 'MIT'
|
|
20
20
|
gem.summary = %Q{Gem wrapper for the LanguageTool API (public or private)}
|
|
21
21
|
gem.description = %Q{Gem wrapper for the LanguageTool API (public or private). It allows to correct texts.}
|
|
22
|
-
gem.email =
|
|
23
|
-
gem.authors = [
|
|
22
|
+
gem.email = 'info@danielherzog.es'
|
|
23
|
+
gem.authors = ['Daniel Herzog']
|
|
24
24
|
end
|
|
25
25
|
Jeweler::RubygemsDotOrgTasks.new
|
|
26
26
|
|
|
@@ -31,9 +31,9 @@ Rake::TestTask.new(:test) do |test|
|
|
|
31
31
|
test.verbose = true
|
|
32
32
|
end
|
|
33
33
|
|
|
34
|
-
desc
|
|
34
|
+
desc 'Code coverage detail'
|
|
35
35
|
task :simplecov do
|
|
36
|
-
ENV['COVERAGE'] =
|
|
36
|
+
ENV['COVERAGE'] = 'true'
|
|
37
37
|
Rake::Task['test'].execute
|
|
38
38
|
end
|
|
39
39
|
|
|
@@ -41,7 +41,7 @@ task :default => :test
|
|
|
41
41
|
|
|
42
42
|
require 'rdoc/task'
|
|
43
43
|
Rake::RDocTask.new do |rdoc|
|
|
44
|
-
version = File.exist?('VERSION') ? File.read('VERSION') :
|
|
44
|
+
version = File.exist?('VERSION') ? File.read('VERSION') : ''
|
|
45
45
|
|
|
46
46
|
rdoc.rdoc_dir = 'rdoc'
|
|
47
47
|
rdoc.title = "languagetool #{version}"
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.1
|
data/languagetool.gemspec
CHANGED
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: languagetool 1.0.
|
|
5
|
+
# stub: languagetool 1.0.1 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "languagetool"
|
|
9
|
-
s.version = "1.0.
|
|
9
|
+
s.version = "1.0.1"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib"]
|
|
13
13
|
s.authors = ["Daniel Herzog"]
|
|
14
|
-
s.date = "2016-08-
|
|
14
|
+
s.date = "2016-08-13"
|
|
15
15
|
s.description = "Gem wrapper for the LanguageTool API (public or private). It allows to correct texts."
|
|
16
16
|
s.email = "info@danielherzog.es"
|
|
17
17
|
s.extra_rdoc_files = [
|
|
@@ -47,7 +47,7 @@ Gem::Specification.new do |s|
|
|
|
47
47
|
"test/test_check.rb",
|
|
48
48
|
"test/test_languages.rb"
|
|
49
49
|
]
|
|
50
|
-
s.homepage = "https://
|
|
50
|
+
s.homepage = "https://github.com/wikiti/languagetool-ruby"
|
|
51
51
|
s.licenses = ["MIT"]
|
|
52
52
|
s.rubygems_version = "2.4.5.1"
|
|
53
53
|
s.summary = "Gem wrapper for the LanguageTool API (public or private)"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: languagetool
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Daniel Herzog
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-08-
|
|
11
|
+
date: 2016-08-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rest-client
|
|
@@ -102,7 +102,7 @@ files:
|
|
|
102
102
|
- test/helper.rb
|
|
103
103
|
- test/test_check.rb
|
|
104
104
|
- test/test_languages.rb
|
|
105
|
-
homepage: https://
|
|
105
|
+
homepage: https://github.com/wikiti/languagetool-ruby
|
|
106
106
|
licenses:
|
|
107
107
|
- MIT
|
|
108
108
|
metadata: {}
|