synonym_scrapper 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 +4 -4
- data/README.md +7 -7
- data/lib/synonym_scrapper/version.rb +1 -1
- data/synonym_scrapper.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f96e014917f8d403a5ec01d04326e3959c4295264f70a3cac24c36cdf60ac5cb
|
|
4
|
+
data.tar.gz: ef41c0c88715ddc8db0c9fac746f12e66e8ec066e6a03ec92111be9d159f4638
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c4a3ff7128ee596c1cca627c2ae225644c93bc3a28d192b289c070ea87b81026ba4fece0b4723d4d3dc2877ccab0aacb591826b4a798e018447d33e01c274e5b
|
|
7
|
+
data.tar.gz: ccdb70ddb492316f8d52689cbb01285202cf517eea4201e782e8d96e27b6067ef0a8f05de7b211cd5de2c6035133677ccb7acb6503699b0305f786c1b58cabad
|
data/README.md
CHANGED
|
@@ -30,8 +30,8 @@ First you need to have Python3 installed on the machine that will use this gem.
|
|
|
30
30
|
And download its data through python (you can run these through the python interpreter):
|
|
31
31
|
|
|
32
32
|
```python
|
|
33
|
-
|
|
34
|
-
|
|
33
|
+
import nltk
|
|
34
|
+
nltk.download()
|
|
35
35
|
```
|
|
36
36
|
From the packages available in NLTK you'll need to download omw (Open Multilingual Wordnet).
|
|
37
37
|
|
|
@@ -63,11 +63,11 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
|
63
63
|
|
|
64
64
|
## To do
|
|
65
65
|
|
|
66
|
-
- [] Implement more synonym sources
|
|
67
|
-
- [] Use datamuse's API full capabilities
|
|
68
|
-
- [] Filter data obtained from dictionaries by score
|
|
69
|
-
- [] Add method to get synonyms from all dictionaries
|
|
70
|
-
- [] Extend to more languages
|
|
66
|
+
- [ ] Implement more synonym sources
|
|
67
|
+
- [ ] Use datamuse's API full capabilities
|
|
68
|
+
- [ ] Filter data obtained from dictionaries by score
|
|
69
|
+
- [ ] Add method to get synonyms from all dictionaries
|
|
70
|
+
- [ ] Extend to more languages
|
|
71
71
|
|
|
72
72
|
## License
|
|
73
73
|
|
data/synonym_scrapper.gemspec
CHANGED
|
@@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
|
|
|
21
21
|
spec.requirements << 'Python3 installed along NLTK with omw'
|
|
22
22
|
|
|
23
23
|
spec.metadata["homepage_uri"] = spec.homepage
|
|
24
|
-
spec.metadata["source_code_uri"] = "https://github.com/Uriyah3/
|
|
24
|
+
spec.metadata["source_code_uri"] = "https://github.com/Uriyah3/ruby_synonym_scrapper_gem"
|
|
25
25
|
#spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
|
|
26
26
|
|
|
27
27
|
# Specify which files should be added to the gem when it is released.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: synonym_scrapper
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nicolás Mariángel
|
|
@@ -56,7 +56,7 @@ licenses:
|
|
|
56
56
|
- MIT
|
|
57
57
|
metadata:
|
|
58
58
|
homepage_uri: https://rubygems.org/gems/synonym_scrapper
|
|
59
|
-
source_code_uri: https://github.com/Uriyah3/
|
|
59
|
+
source_code_uri: https://github.com/Uriyah3/ruby_synonym_scrapper_gem
|
|
60
60
|
post_install_message:
|
|
61
61
|
rdoc_options: []
|
|
62
62
|
require_paths:
|