lingo 1.10.0 → 1.10.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
  SHA256:
3
- metadata.gz: 103a785319189c59d73bd809263c846634e9dd07f723464a4aa460491d018d74
4
- data.tar.gz: 1a8e84cc8c90d865564da1a3329632a4a0e82bc13f933b6ad2973fba9acddd0f
3
+ metadata.gz: 8fd58301e81e9ce8479312ff2e1dce3bc8bd61ae1f7b8cb44378d46ccd4bcdde
4
+ data.tar.gz: bd9f09cdf91521b32622ed8d6246cd444bc7383b13abfa69610c8664a22b2037
5
5
  SHA512:
6
- metadata.gz: 1231398b0de8f08fef039d12381e75a24357d30f30256c68fa2400f9a603ca01ca4812c23f1caa04b7e5dbb9b8581e378c3f995ab9ef0a19ac121f8332aa5b08
7
- data.tar.gz: 93b6ab68e864df78f8e44b10617ce88659eefd457572f6a61bd3527a0940627bc43c76ae6421ae3979a2ce6ca7c03287cc550b62570271e3ee755ab9011ae3e5
6
+ metadata.gz: 57c0e2d9db9a184c0bad95993f6a4bddbc62e9ee52f8cd8924c6faf6d0877347b2d68a1cd35d9fcc85636403bd67ab33936364ac514c672793b0bd117b44873a
7
+ data.tar.gz: 3f4b351d159aeb592660ab10c4f7d4af13b979c94c1f2e808ce4b85256e05d2d5adf2f7ab67bed737b7a58d45d4041ba7c288c50ef0e7a68926456bf7508b9f3
data/ChangeLog CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  = Revision history for Lingo
4
4
 
5
+ == 1.10.1 [2019-02-01]
6
+
7
+ * Fixed regression introduced in 1.8.6 where renamed constant in
8
+ Lingo::Attendee::VectorFilter was not reflected in Lingo::Srv
9
+ (issue #16 by svelsae).
10
+
5
11
  == 1.10.0 [2018-06-16]
6
12
 
7
13
  * <b>Dropped support for Ruby 2.0.</b>
data/README CHANGED
@@ -34,7 +34,7 @@
34
34
 
35
35
  == VERSION
36
36
 
37
- This documentation refers to Lingo version 1.10.0
37
+ This documentation refers to Lingo version 1.10.1
38
38
 
39
39
 
40
40
  == DESCRIPTION
@@ -554,7 +554,7 @@ Lingo is based on a collective development by Klaus Lepsky and John Vorhauer.
554
554
  == LICENSE AND COPYRIGHT
555
555
 
556
556
  Copyright (C) 2005-2007 John Vorhauer
557
- Copyright (C) 2007-2018 John Vorhauer, Jens Wille
557
+ Copyright (C) 2007-2019 John Vorhauer, Jens Wille
558
558
 
559
559
  Lingo is free software: you can redistribute it and/or modify it under the
560
560
  terms of the GNU Affero General Public License as published by the Free
data/Rakefile CHANGED
@@ -37,7 +37,7 @@ The main functions of Lingo are:
37
37
 
38
38
  dependencies: {
39
39
  'cyclops' => '~> 0.3',
40
- 'nuggets' => '~> 1.5',
40
+ 'nuggets' => '~> 1.6',
41
41
  'rubyzip' => '~> 1.2',
42
42
  'sinatra-bells' => '~> 0.4',
43
43
  'unicode' => '~> 0.4'
@@ -6,7 +6,7 @@
6
6
  # Lingo -- A full-featured automatic indexing system #
7
7
  # #
8
8
  # Copyright (C) 2005-2007 John Vorhauer #
9
- # Copyright (C) 2007-2015 John Vorhauer, Jens Wille #
9
+ # Copyright (C) 2007-2019 John Vorhauer, Jens Wille #
10
10
  # #
11
11
  # Lingo is free software; you can redistribute it and/or modify it under the #
12
12
  # terms of the GNU Affero General Public License as published by the Free #
@@ -36,7 +36,7 @@ class Lingo
36
36
  abort 'Something went wrong...' unless LINGO.is_a?(Call)
37
37
 
38
38
  c = LINGO.config.get('meeting/attendees', 'vector_filter', 'src')
39
- SRC_SEP = c == true ? Attendee::VectorFilter::DEFAULT_SRC_SEP : c
39
+ SRC_SEP = c == true ? Attendee::VectorFilter::DEFAULT_SRC_SEPARATOR : c
40
40
 
41
41
  get('') { doit }
42
42
  get('/') { doit }
@@ -4,7 +4,7 @@ class Lingo
4
4
 
5
5
  MAJOR = 1
6
6
  MINOR = 10
7
- TINY = 0
7
+ TINY = 1
8
8
 
9
9
  class << self
10
10
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lingo
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.0
4
+ version: 1.10.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Vorhauer
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2018-06-16 00:00:00.000000000 Z
12
+ date: 2019-02-01 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: cyclops
@@ -31,14 +31,14 @@ dependencies:
31
31
  requirements:
32
32
  - - "~>"
33
33
  - !ruby/object:Gem::Version
34
- version: '1.5'
34
+ version: '1.6'
35
35
  type: :runtime
36
36
  prerelease: false
37
37
  version_requirements: !ruby/object:Gem::Requirement
38
38
  requirements:
39
39
  - - "~>"
40
40
  - !ruby/object:Gem::Version
41
- version: '1.5'
41
+ version: '1.6'
42
42
  - !ruby/object:Gem::Dependency
43
43
  name: rubyzip
44
44
  requirement: !ruby/object:Gem::Requirement
@@ -143,20 +143,20 @@ dependencies:
143
143
  requirements:
144
144
  - - "~>"
145
145
  - !ruby/object:Gem::Version
146
- version: '0.8'
146
+ version: '0.9'
147
147
  - - ">="
148
148
  - !ruby/object:Gem::Version
149
- version: 0.8.7
149
+ version: 0.9.0
150
150
  type: :development
151
151
  prerelease: false
152
152
  version_requirements: !ruby/object:Gem::Requirement
153
153
  requirements:
154
154
  - - "~>"
155
155
  - !ruby/object:Gem::Version
156
- version: '0.8'
156
+ version: '0.9'
157
157
  - - ">="
158
158
  - !ruby/object:Gem::Version
159
- version: 0.8.7
159
+ version: 0.9.0
160
160
  - !ruby/object:Gem::Dependency
161
161
  name: rake
162
162
  requirement: !ruby/object:Gem::Requirement
@@ -204,10 +204,7 @@ executables:
204
204
  - lingosrv
205
205
  - lingoweb
206
206
  extensions: []
207
- extra_rdoc_files:
208
- - README
209
- - COPYING
210
- - ChangeLog
207
+ extra_rdoc_files: []
211
208
  files:
212
209
  - COPYING
213
210
  - ChangeLog
@@ -371,20 +368,13 @@ licenses:
371
368
  metadata: {}
372
369
  post_install_message: |2+
373
370
 
374
- lingo-1.10.0 [2018-06-16]:
371
+ lingo-1.10.1 [2019-02-01]:
375
372
 
376
- * <b>Dropped support for Ruby 2.0.</b>
377
- * Updated dependency versions.
373
+ * Fixed regression introduced in 1.8.6 where renamed constant in
374
+ Lingo::Attendee::VectorFilter was not reflected in Lingo::Srv
375
+ (issue #16 by svelsae).
378
376
 
379
- rdoc_options:
380
- - "--title"
381
- - lingo Application documentation (v1.10.0)
382
- - "--charset"
383
- - UTF-8
384
- - "--line-numbers"
385
- - "--all"
386
- - "--main"
387
- - README
377
+ rdoc_options: []
388
378
  require_paths:
389
379
  - lib
390
380
  required_ruby_version: !ruby/object:Gem::Requirement