what_you_say 0.4.0-arm64-darwin → 0.4.2-arm64-darwin

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: fd487494668210573d029cf4899f27c9f25d05ebe07ca402039d7f8b162e90b0
4
- data.tar.gz: '0284322ca0c0be959af645ec8d992879e70ee4442da6852669a9516a7831edd6'
3
+ metadata.gz: c5b3760f72a18aa0a0f46f2f8b5a3fe42822be4ef8daf54499faeb584302d8f7
4
+ data.tar.gz: e54de0603afd5957bd9f74e5ec0db1b7eb0ebddd34c2c4e845ef0d32327b8eb0
5
5
  SHA512:
6
- metadata.gz: 2f4f82e067ed8cf5ba3a9fd261d22c6885616510680c7debd58636cb651a9cefaca04f11b4796bfbba2eaaae923784626454fe3e6190866ace8196d98c1d441d
7
- data.tar.gz: a5d3beed260c0f3dfd01d9f3a4efe90cd97e7a49b10232844361d750b0e4b52c4227ace36d1d47af93493f996e57f4a500554f9f0d926be9611f3708507fef12
6
+ metadata.gz: 3f447cc90750acd25f657adfcdc5287bf7409f9a9d42f0f9b3aed84ba64c572abd12da0015dadd37f8a8b1182518e84cda0620f16e2f3c03d14452ce7457b327
7
+ data.tar.gz: 73187be3c935fae84ee8715d3e2d416c0bac8fa9eab77b0a909cc70e769a0fdfe5bec284096878a27ba969c9cd49950761a7e5a1c4921ddbc71af8caf3bf81cd
data/README.md CHANGED
@@ -1,12 +1,14 @@
1
1
  # WhatYouSay
2
2
 
3
- Quick and easy natural language detection wrapping the [lingua-rs Rust crate](https://github.com/pemistahl/lingua-rs). Instantly identify the source language of a piece of text.
3
+ Quick and easy natural language detection wrapping the [Whatlang Rust crate](https://github.com/greyblake/whatlang-rs). Instantly identify the source language of a piece of text.
4
4
 
5
5
  ![What you say!!](https://user-images.githubusercontent.com/64050/224237944-ceb2570c-d544-474a-8c91-41433efdee43.png)
6
6
 
7
- - Supports [75+ languages](https://github.com/pemistahl/lingua-rs/tree/main#3-which-languages-are-supported)
7
+ - Supports [69 languages](https://github.com/greyblake/whatlang-rs/blob/master/SUPPORTED_LANGUAGES.md) (nice!)
8
8
  - Core library is written in Rust; this is a Ruby wrapper to it
9
9
  - Lightweight, fast, and simple
10
+ - Recognizes not only a language, but also a script (Latin, Cyrillic, etc)
11
+ - Provides reliability information
10
12
 
11
13
  ## Installation
12
14
 
@@ -20,9 +22,7 @@ If bundler is not being used to manage dependencies, install the gem by executin
20
22
 
21
23
  ## Usage
22
24
 
23
- The method to call is `_?`. Why? Because it looked nice.
24
-
25
- Pass in the text whose language you want to detect:
25
+ The method to call is `_?`. Why? Because. Pass in the text whose language you want to detect:
26
26
 
27
27
  ```ruby
28
28
  require "what_you_say"
@@ -31,8 +31,8 @@ text = "Ĉu vi ne volas eklerni Esperanton? Bonvolu! Estas unu de la plej bonaj
31
31
 
32
32
  result = WhatYouSay._?(text)
33
33
 
34
- assert_equal("epo", result.lang.code)
35
- assert_equal("esperanto", result.lang.eng_name)
34
+ assert_equal("epo", result.code)
35
+ assert_equal("esperanto", result.eng_name)
36
36
  ```
37
37
 
38
38
  You also have to opportunity to `inspect` some output:
@@ -40,7 +40,7 @@ You also have to opportunity to `inspect` some output:
40
40
  ```ruby
41
41
  text = "Եվ ահա ես ստանում եմ մի զանգ պատահական տղայից"
42
42
  WhatYouSay._?(text).inspect
43
- #=> #<WhatYouSay::Info lang=#<WhatYouSay::Lang code="hye" name="Հայերեն" eng_name="Armenian"> script="Armenian" reliable=true confidence=1>
43
+ #=> #<WhatYouSay::Lang code="hye" eng_name="Armenian">
44
44
  ```
45
45
 
46
46
  ## Development
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WhatYouSay
4
- VERSION = "0.4.0"
4
+ VERSION = "0.4.2"
5
5
  end
data/lib/what_you_say.rb CHANGED
@@ -2,7 +2,6 @@
2
2
 
3
3
  require_relative "what_you_say/extension"
4
4
 
5
- require "what_you_say/info"
6
5
  require "what_you_say/lang"
7
6
  require "what_you_say/version"
8
7
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: what_you_say
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.2
5
5
  platform: arm64-darwin
6
6
  authors:
7
7
  - Garen J. Torikian
@@ -52,7 +52,6 @@ files:
52
52
  - lib/what_you_say/3.1/what_you_say.bundle
53
53
  - lib/what_you_say/3.2/what_you_say.bundle
54
54
  - lib/what_you_say/extension.rb
55
- - lib/what_you_say/info.rb
56
55
  - lib/what_you_say/lang.rb
57
56
  - lib/what_you_say/version.rb
58
57
  homepage: https://github.com/gjtorikian/what_you_say
@@ -1,6 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module WhatYouSay
4
- class Info
5
- end
6
- end