semantic_analysis 0.1.0 → 0.1.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
  SHA256:
3
- metadata.gz: 8c1eb318d7279e1704cc10836d48cfda848860f698b8c2ce87fc629a3120250f
4
- data.tar.gz: 05d58d821be5f114106250d3e49351eb827baebfe8889293a11c516500fb7ca3
3
+ metadata.gz: c3ae7753b257349289c9879f3f917b62a37e79648be7a72017bb6d73eebf1b70
4
+ data.tar.gz: 564d4f26523ee40fddbcc6e54842c94dd5df746ac651fdd7c01f62a092e932a5
5
5
  SHA512:
6
- metadata.gz: 630f3d465a39cb9d3dc18688f003bfad7da339ea476a5db9ff0a496b6773823e972bac159bfb052603f636249f7bc32b0f7c6b2b9c902e46d88ff4df4bd8ddd3
7
- data.tar.gz: 7b0efc10e4c5a15b513408bae20b7d138e39c81ad97f02dc4b66f63b1cbf9446f5295c939d1e82550d4ed7661f1517110b126b81d86f8795856e01695384e4be
6
+ metadata.gz: 7ec887684587dcd1d32daa6f7a12d82841229273d50aafb8a553043679ecd79197ecd860233ab1fa9e3e08bf0398ebb61f1dc798664931af35631d84e7fe0489
7
+ data.tar.gz: d16a6be3b03649817977cef89b627add39e4cc1b07609311036ed689ea8f372fd67f5cdbf3180030cce2e4eccb95b123e8c47c22844527bf127d6baf97bce6ac
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- semantic_analysis (0.1.0)
4
+ semantic_analysis (0.1.1)
5
5
  ffi
6
6
  json
7
7
  rutie (~> 0.0.3)
data/README.md CHANGED
@@ -1,8 +1,6 @@
1
1
  # SemanticAnalysis
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/semantic_analysis`. To experiment with that code, run `bin/console` for an interactive prompt.
4
-
5
- TODO: Delete this and the text above, and describe your gem
3
+ `SemanticAnalysis` is `Rutie` wrapped Rust implementation of [VADER Sentiment Analysis](https://github.com/kind-io/vader-sentiment-rust)
6
4
 
7
5
  ## Installation
8
6
 
@@ -22,7 +20,17 @@ Or install it yourself as:
22
20
 
23
21
  ## Usage
24
22
 
25
- TODO: Write usage instructions here
23
+ ```ruby
24
+ polarity = SemanticAnalyzer.score_polarity('I am so happy for you!!! This is Great! 💖')
25
+ expected = {
26
+ compound: 0.9222007182386665,
27
+ neg: 0.0,
28
+ neu: 0.363901018922853,
29
+ pos: 0.636098981077147
30
+ }
31
+
32
+ polarity == expected
33
+ ```
26
34
 
27
35
  ## Development
28
36
 
Binary file
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SemanticAnalysis
4
- VERSION = '0.1.0'
4
+ VERSION = '0.1.1'
5
5
  end
@@ -8,5 +8,6 @@ require 'rutie'
8
8
  module SemanticAnalysis
9
9
  class Error < StandardError; end
10
10
 
11
- Rutie.new(:semantic_analysis).init 'Init_semantic_analyzer', __dir__
11
+ lib_path = File.join(__dir__, '../lib/')
12
+ Rutie.new(:semantic_analysis, { lib_path: lib_path }).init 'Init_semantic_analyzer', __dir__
12
13
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: semantic_analysis
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pete Taylor