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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c92e0e3ccceeab83cbd4c52f27ea864cf2d4cb89
4
- data.tar.gz: ad9256c1bdfd042f15a1f78e9e0d0e659ed2a00b
3
+ metadata.gz: f327f2754e57f800de9e1134d2019a73fbd116fd
4
+ data.tar.gz: 733566284b1b53d72bdb01afe61384fb63c0028d
5
5
  SHA512:
6
- metadata.gz: ba65dd503c0017a163e3d3f9002c873ade069efe396f4d9aed2b552245bb3152982df7d66981254b035138d6d1b3a31b7031416ab7a9c2ef1a12b27daa397cef
7
- data.tar.gz: 46f57e18dc6ee1b32eccf5e576268fe9d89ef58071aece09db691007b2823d0450ce38ca527ce68c603c7efc4a62fb8e3c54a0ac13c579de5b920cdf38f819a4
6
+ metadata.gz: 37b9be3df30b20fa9468aa40162013bd6c55af63d66452dc4b9a940d391bd0ebc824b931034182e4adc50345d6c9f0714100aca0ea091faedb218ff26613b682
7
+ data.tar.gz: f575e75a92dd8defe04df6b6a1889580a3a66cb3c742a16e1ac7a9abe53d1ec2b61edaecd9304564687b50c29abd7ed584b1154d354e01340c8c94b68b001417
Binary file
data.tar.gz.sig CHANGED
Binary file
@@ -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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  = Thingfish
2
2
 
3
- * http://bitbucket.org/ged/thingfish
3
+ * https://thing.fish/
4
4
 
5
5
  == Description
6
6
 
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'
@@ -0,0 +1,9 @@
1
+ # -*- ruby -*-
2
+ #encoding: utf-8
3
+
4
+ require 'strelka/discovery'
5
+
6
+ Strelka::Discovery.register_apps(
7
+ 'thingfish' => 'thingfish/handler.rb'
8
+ )
9
+
@@ -12,10 +12,10 @@ module Thingfish
12
12
 
13
13
 
14
14
  # Package version
15
- VERSION = '0.5.0'
15
+ VERSION = '0.5.1'
16
16
 
17
17
  # Version control revision
18
- REVISION = %q$Revision: 3607a807e2bf $
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.0
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: http://bitbucket.org/ged/thingfish
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
@@ -1,6 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require 'thingfish/processordaemon'
4
-
5
- Thingfish::ProcessorDaemon.run( ARGV )
6
-
@@ -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
-