megahal 1.0.1 → 1.0.2
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 +3 -1
- data/VERSION +1 -1
- data/megahal.gemspec +4 -4
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d603456d8d72e1fad944f40ea22a02e219f67f8c
|
|
4
|
+
data.tar.gz: 2cb5f7228b7d404f3a421ddd92b5dc9c14856f2e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a8f7c508866d75de3fd6778030c1a0d1c17a2cce82a5269a84ddde125a0712cf42a7c03851c9d00a7d12150e04435f9094cdafe08449fc83a47fd656743019a7
|
|
7
|
+
data.tar.gz: 0cf12dc840dfd35fa0a9f92733c8ff2abfa2685c5e1d5331038d2c8dc19511ec9aa425461bdaf6578320fa6fb3be15aff36f3a789abb22bf4a07d0aef2e6a3b3
|
data/README.md
CHANGED
|
@@ -10,7 +10,9 @@ MegaHAL is a learning chatterbot.
|
|
|
10
10
|
|
|
11
11
|
You can run it as a command-line application, or embed it in your own
|
|
12
12
|
application and make calls to it via a simple
|
|
13
|
-
[API](http://www.rubydoc.info/gems/megahal/).
|
|
13
|
+
[API](http://www.rubydoc.info/gems/megahal/). For example, see
|
|
14
|
+
the [megahal-server](http://github.com/jasonhutchens/megahal-server) repository,
|
|
15
|
+
which allows you to [chat with MegaHAL online](http://megahal.kranzky.com/).
|
|
14
16
|
|
|
15
17
|
It is built on top of [Sooth](https://github.com/jasonhutchens/sooth), a simple
|
|
16
18
|
stochastic predictive model.
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.2
|
data/megahal.gemspec
CHANGED
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: megahal 1.0.
|
|
5
|
+
# stub: megahal 1.0.2 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "megahal"
|
|
9
|
-
s.version = "1.0.
|
|
9
|
+
s.version = "1.0.2"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib"]
|
|
13
13
|
s.authors = ["Jason Hutchens"]
|
|
14
|
-
s.date = "
|
|
14
|
+
s.date = "2015-05-26"
|
|
15
15
|
s.description = "Have a weird conversation with a computer."
|
|
16
16
|
s.email = "jasonhutchens@gmail.com"
|
|
17
17
|
s.executables = ["megahal"]
|
|
@@ -49,7 +49,7 @@ Gem::Specification.new do |s|
|
|
|
49
49
|
s.homepage = "http://github.com/jasonhutchens/megahal"
|
|
50
50
|
s.licenses = ["UNLICENSE"]
|
|
51
51
|
s.required_ruby_version = Gem::Requirement.new("~> 2.1")
|
|
52
|
-
s.rubygems_version = "2.4.
|
|
52
|
+
s.rubygems_version = "2.4.6"
|
|
53
53
|
s.summary = "MegaHAL is a learning chatterbot."
|
|
54
54
|
|
|
55
55
|
if s.respond_to? :specification_version then
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: megahal
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jason Hutchens
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2015-05-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: sooth
|
|
@@ -232,7 +232,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
232
232
|
version: '0'
|
|
233
233
|
requirements: []
|
|
234
234
|
rubyforge_project:
|
|
235
|
-
rubygems_version: 2.4.
|
|
235
|
+
rubygems_version: 2.4.6
|
|
236
236
|
signing_key:
|
|
237
237
|
specification_version: 4
|
|
238
238
|
summary: MegaHAL is a learning chatterbot.
|