crowsad 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/crowsad.gemspec +3 -1
- data/lib/crowsad/version.rb +1 -1
- metadata +16 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0feeadf9ef50b895dfe79c00009aaceb956a4e631d24be20200e5f0c8d010787
|
|
4
|
+
data.tar.gz: e1f8118c0a90d0be980e2a0b5429e6555786aff9895b940d98e65256a0b51ba0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 760bee70c8e9993fbbe17318f4ecd7147143044aadb14c763c94992794bb956e88f78f4350a63a976dbc0acc71dc918d6929f3859d7a658f2159e2dcc004d2d1
|
|
7
|
+
data.tar.gz: 32af8bde2a0be3d2aebab771782c7d5fff34c7c59e7c6c38fd4f27e14470c8d49822c6c6c35e91738c09fdaea97bddd4ecd07ebda6ec2627d18f67988002b93e
|
data/crowsad.gemspec
CHANGED
|
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.email = ["gitea@fake.local"]
|
|
10
10
|
|
|
11
11
|
spec.summary = %q{Crowsad is a mixed AI approach that combines Duck Duck Go glossary building with prepositional dictionaries to constructing realistic dangling modifiers.}
|
|
12
|
-
spec.description = %q{Crowsad was conceptualized as a way of blending Duck Duck Go with Dangling Modifier generation so as to learn new words overs time, rather than having to index everything in one go. It uses four input vectors and one output vector. Github version is old version.}
|
|
12
|
+
spec.description = %q{Crowsad was conceptualized as a way of blending Duck Duck Go with Dangling Modifier generation so as to learn new words overs time, rather than having to index everything in one go. It uses four input vectors and one output vector. Github version is old version. Credit Andrew Jones for Duck Duck Go.}
|
|
13
13
|
spec.homepage = "https://github.com/LWFlouisa/Crowsad"
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
|
@@ -25,4 +25,6 @@ Gem::Specification.new do |spec|
|
|
|
25
25
|
spec.add_development_dependency "bundler", "~> 2.0"
|
|
26
26
|
spec.add_development_dependency "rake", "~> 10.0"
|
|
27
27
|
spec.add_development_dependency "rspec", "~> 3.0"
|
|
28
|
+
|
|
29
|
+
spec.add_runtime_dependency "duck-duck-go", "1.1.3"
|
|
28
30
|
end
|
data/lib/crowsad/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: crowsad
|
|
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
|
- Gitea
|
|
@@ -52,10 +52,24 @@ dependencies:
|
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '3.0'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: duck-duck-go
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - '='
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: 1.1.3
|
|
62
|
+
type: :runtime
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - '='
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: 1.1.3
|
|
55
69
|
description: Crowsad was conceptualized as a way of blending Duck Duck Go with Dangling
|
|
56
70
|
Modifier generation so as to learn new words overs time, rather than having to index
|
|
57
71
|
everything in one go. It uses four input vectors and one output vector. Github version
|
|
58
|
-
is old version.
|
|
72
|
+
is old version. Credit Andrew Jones for Duck Duck Go.
|
|
59
73
|
email:
|
|
60
74
|
- gitea@fake.local
|
|
61
75
|
executables: []
|