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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bc9af48f5e6b58bec7d74c2541542813a1e0539b
4
- data.tar.gz: 3a7013638a58ba7ae2a2232383b57fd5c683f4f8
3
+ metadata.gz: adc4d4972519a14a47d59f1ae7ed291e7c7dd48a
4
+ data.tar.gz: 91b24c8c045b43a38a4aaea54879260e7b9df03b
5
5
  SHA512:
6
- metadata.gz: 2bb198a32756e51689da671c4a49eeff449f583f68a0bf5ee4aac584543d112893fd0b1cb866711fa910b537a6f35224ffa77a31e027d4b0ac341eb44b117239
7
- data.tar.gz: ae970bcefc206a2423437b3059c2b303ef24f4cb83c5ababf62cda9052671ecb1cc26827baebddc6c5029fda0776b20fd6b94f61b038becd43ad7f5176f9134a
6
+ metadata.gz: 873b83ba6caa33860d7d5064226c79eda3ab81dbdafd31c298c51eab31eb4c337902f2d2b33c00918ab7ea6c1cb14fe41edfda96d4e4e3adcb6c4ccd7a1852f1
7
+ data.tar.gz: 1f5936bdc65e09780568b0d31a3727c4452972a1f4f6171fddb537999fe6ab0cdab011d8f4b56ae7a4fa49a020b73d7f6a11200a336d053424d1ab97fc66bbdd
data/Gemfile CHANGED
@@ -1,5 +1,7 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
+ ruby '2.2.4'
4
+
3
5
  gem 'rest-client'
4
6
 
5
7
  group :development do
@@ -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.2.2)
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.0.8)
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
- ![](icon.png)
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://gitlab.com/wikiti-random-stuff/languagetool-ruby"
19
- gem.license = "MIT"
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 = "info@danielherzog.es"
23
- gem.authors = ["Daniel Herzog"]
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 "Code coverage detail"
34
+ desc 'Code coverage detail'
35
35
  task :simplecov do
36
- ENV['COVERAGE'] = "true"
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.0
1
+ 1.0.1
@@ -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.0 ruby lib
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.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-11"
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://gitlab.com/wikiti-random-stuff/languagetool-ruby"
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.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 00:00:00.000000000 Z
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://gitlab.com/wikiti-random-stuff/languagetool-ruby
105
+ homepage: https://github.com/wikiti/languagetool-ruby
106
106
  licenses:
107
107
  - MIT
108
108
  metadata: {}