thingfish 0.5.0 → 0.5.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
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/History.rdoc +12 -0
- data/Manifest.txt +1 -2
- data/README.rdoc +1 -1
- data/Rakefile +1 -1
- data/lib/strelka/apps.rb +9 -0
- data/lib/thingfish.rb +2 -2
- metadata +4 -6
- metadata.gz.sig +0 -0
- data/bin/tfprocessord +0 -6
- data/lib/thingfish/processordaemon.rb +0 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f327f2754e57f800de9e1134d2019a73fbd116fd
|
4
|
+
data.tar.gz: 733566284b1b53d72bdb01afe61384fb63c0028d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 37b9be3df30b20fa9468aa40162013bd6c55af63d66452dc4b9a940d391bd0ebc824b931034182e4adc50345d6c9f0714100aca0ea091faedb218ff26613b682
|
7
|
+
data.tar.gz: f575e75a92dd8defe04df6b6a1889580a3a66cb3c742a16e1ac7a9abe53d1ec2b61edaecd9304564687b50c29abd7ed584b1154d354e01340c8c94b68b001417
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/History.rdoc
CHANGED
@@ -1,3 +1,15 @@
|
|
1
|
+
== v0.5.1 [2016-11-14] Michael Granger <ged@FaerieMUD.org>
|
2
|
+
|
3
|
+
Enhancements:
|
4
|
+
|
5
|
+
- Add support for Strelka app discovery.
|
6
|
+
|
7
|
+
Bugfixes:
|
8
|
+
|
9
|
+
- Remove the processor daemon for now
|
10
|
+
- Documentation fixes
|
11
|
+
|
12
|
+
|
1
13
|
== v0.5.0 [2016-11-14] Michael Granger <ged@FaerieMUD.org>
|
2
14
|
|
3
15
|
First public release.
|
data/Manifest.txt
CHANGED
@@ -7,11 +7,11 @@ Manifest.txt
|
|
7
7
|
Procfile
|
8
8
|
README.rdoc
|
9
9
|
Rakefile
|
10
|
-
bin/tfprocessord
|
11
10
|
bin/thingfish
|
12
11
|
etc/mongrel2-config.rb
|
13
12
|
etc/thingfish.conf.example
|
14
13
|
lib/strelka/app/metadata.rb
|
14
|
+
lib/strelka/apps.rb
|
15
15
|
lib/strelka/httprequest/metadata.rb
|
16
16
|
lib/thingfish.rb
|
17
17
|
lib/thingfish/behaviors.rb
|
@@ -23,7 +23,6 @@ lib/thingfish/metastore/memory.rb
|
|
23
23
|
lib/thingfish/mixins.rb
|
24
24
|
lib/thingfish/processor.rb
|
25
25
|
lib/thingfish/processor/sha256.rb
|
26
|
-
lib/thingfish/processordaemon.rb
|
27
26
|
lib/thingfish/spechelpers.rb
|
28
27
|
spec/data/APIC-1-image.mp3
|
29
28
|
spec/data/APIC-2-images.mp3
|
data/README.rdoc
CHANGED
data/Rakefile
CHANGED
@@ -20,7 +20,7 @@ hoespec = Hoe.spec 'thingfish' do
|
|
20
20
|
self.readme_file = 'README.rdoc'
|
21
21
|
self.history_file = 'History.rdoc'
|
22
22
|
self.extra_rdoc_files = Rake::FileList[ '*.rdoc' ]
|
23
|
-
self.license 'BSD'
|
23
|
+
self.license 'BSD-3-Clause'
|
24
24
|
|
25
25
|
self.developer 'Michael Granger', 'ged@FaerieMUD.org'
|
26
26
|
self.developer 'Mahlon E. Smith', 'mahlon@martini.nu'
|
data/lib/strelka/apps.rb
ADDED
data/lib/thingfish.rb
CHANGED
@@ -12,10 +12,10 @@ module Thingfish
|
|
12
12
|
|
13
13
|
|
14
14
|
# Package version
|
15
|
-
VERSION = '0.5.
|
15
|
+
VERSION = '0.5.1'
|
16
16
|
|
17
17
|
# Version control revision
|
18
|
-
REVISION = %q$Revision:
|
18
|
+
REVISION = %q$Revision: 23c489bc9618 $
|
19
19
|
|
20
20
|
|
21
21
|
### Get the library version. If +include_buildnum+ is true, the version string will
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: thingfish
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Granger
|
@@ -159,7 +159,6 @@ email:
|
|
159
159
|
- ged@FaerieMUD.org
|
160
160
|
- mahlon@martini.nu
|
161
161
|
executables:
|
162
|
-
- tfprocessord
|
163
162
|
- thingfish
|
164
163
|
extensions: []
|
165
164
|
extra_rdoc_files:
|
@@ -176,11 +175,11 @@ files:
|
|
176
175
|
- Procfile
|
177
176
|
- README.rdoc
|
178
177
|
- Rakefile
|
179
|
-
- bin/tfprocessord
|
180
178
|
- bin/thingfish
|
181
179
|
- etc/mongrel2-config.rb
|
182
180
|
- etc/thingfish.conf.example
|
183
181
|
- lib/strelka/app/metadata.rb
|
182
|
+
- lib/strelka/apps.rb
|
184
183
|
- lib/strelka/httprequest/metadata.rb
|
185
184
|
- lib/thingfish.rb
|
186
185
|
- lib/thingfish/behaviors.rb
|
@@ -192,7 +191,6 @@ files:
|
|
192
191
|
- lib/thingfish/mixins.rb
|
193
192
|
- lib/thingfish/processor.rb
|
194
193
|
- lib/thingfish/processor/sha256.rb
|
195
|
-
- lib/thingfish/processordaemon.rb
|
196
194
|
- lib/thingfish/spechelpers.rb
|
197
195
|
- spec/data/APIC-1-image.mp3
|
198
196
|
- spec/data/APIC-2-images.mp3
|
@@ -209,9 +207,9 @@ files:
|
|
209
207
|
- spec/thingfish/processor/sha256_spec.rb
|
210
208
|
- spec/thingfish/processor_spec.rb
|
211
209
|
- spec/thingfish_spec.rb
|
212
|
-
homepage:
|
210
|
+
homepage: https://thing.fish/
|
213
211
|
licenses:
|
214
|
-
- BSD
|
212
|
+
- BSD-3-Clause
|
215
213
|
- BSD
|
216
214
|
metadata: {}
|
217
215
|
post_install_message:
|
metadata.gz.sig
CHANGED
Binary file
|
data/bin/tfprocessord
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
# -*- ruby -*-
|
2
|
-
#encoding: utf-8
|
3
|
-
|
4
|
-
require 'zmq'
|
5
|
-
require 'configurability'
|
6
|
-
require 'loggability'
|
7
|
-
|
8
|
-
require 'thingfish' unless defined?( Thingfish )
|
9
|
-
|
10
|
-
|
11
|
-
# Currently just a placeholder for what will eventually be the runner for
|
12
|
-
# async processors.
|
13
|
-
class Thingfish::ProcessorDaemon
|
14
|
-
end # class Thingfish::ProcessorDaemon
|
15
|
-
|
16
|
-
|