dtas 0.3.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (45) hide show
  1. checksums.yaml +4 -4
  2. data/Documentation/GNUmakefile +2 -0
  3. data/Documentation/dtas-player_protocol.txt +28 -1
  4. data/Documentation/dtas-splitfx.txt +167 -0
  5. data/Documentation/dtas-tl.txt +77 -0
  6. data/GIT-VERSION-GEN +2 -1
  7. data/GNUmakefile +1 -1
  8. data/README +2 -1
  9. data/Rakefile +7 -0
  10. data/bin/dtas-console +11 -1
  11. data/bin/dtas-splitfx +40 -0
  12. data/bin/dtas-tl +73 -0
  13. data/examples/README +3 -0
  14. data/examples/splitfx.sample.yml +19 -0
  15. data/lib/dtas/format.rb +11 -0
  16. data/lib/dtas/pipe.rb +0 -3
  17. data/lib/dtas/player.rb +38 -11
  18. data/lib/dtas/player/client_handler.rb +94 -7
  19. data/lib/dtas/process.rb +25 -3
  20. data/lib/dtas/sink.rb +0 -3
  21. data/lib/dtas/source/sox.rb +2 -1
  22. data/lib/dtas/splitfx.rb +342 -0
  23. data/lib/dtas/tracklist.rb +130 -0
  24. data/test/helper.rb +14 -1
  25. data/test/player_integration.rb +5 -3
  26. data/test/test_buffer.rb +4 -2
  27. data/test/test_env.rb +55 -0
  28. data/test/test_format.rb +1 -1
  29. data/test/test_format_change.rb +1 -1
  30. data/test/test_player.rb +1 -1
  31. data/test/test_player_client_handler.rb +1 -1
  32. data/test/test_player_integration.rb +3 -2
  33. data/test/test_process.rb +1 -1
  34. data/test/test_rg_integration.rb +4 -5
  35. data/test/test_rg_state.rb +1 -1
  36. data/test/test_sink.rb +1 -1
  37. data/test/test_sink_pipe_size.rb +1 -1
  38. data/test/test_sink_tee_integration.rb +1 -1
  39. data/test/test_source_av.rb +1 -1
  40. data/test/test_source_sox.rb +1 -1
  41. data/test/test_splitfx.rb +79 -0
  42. data/test/test_tracklist.rb +76 -0
  43. data/test/test_unixserver.rb +1 -1
  44. data/test/test_util.rb +1 -1
  45. metadata +23 -3
@@ -5,7 +5,7 @@ require 'tempfile'
5
5
  require 'dtas/unix_server'
6
6
  require 'stringio'
7
7
 
8
- class TestUNIXServer < Minitest::Unit::TestCase
8
+ class TestUNIXServer < Testcase
9
9
  def setup
10
10
  @tmp = Tempfile.new(%w(dtas-unix_server-test .sock))
11
11
  File.unlink(@tmp.path)
data/test/test_util.rb CHANGED
@@ -3,7 +3,7 @@
3
3
  require './test/helper'
4
4
  require 'dtas/util'
5
5
 
6
- class TestUtil < Minitest::Unit::TestCase
6
+ class TestUtil < Testcase
7
7
  include DTAS::Util
8
8
  def test_util
9
9
  orig = 6.0
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dtas
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Wong
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-09-02 00:00:00.000000000 Z
11
+ date: 2013-09-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rdoc
@@ -54,6 +54,8 @@ executables:
54
54
  - dtas-player
55
55
  - dtas-sinkedit
56
56
  - dtas-sourceedit
57
+ - dtas-splitfx
58
+ - dtas-tl
57
59
  - dtas-xdelay
58
60
  extensions: []
59
61
  extra_rdoc_files:
@@ -68,6 +70,8 @@ extra_rdoc_files:
68
70
  - Documentation/dtas-player_sink_examples.txt
69
71
  - Documentation/dtas-sinkedit.txt
70
72
  - Documentation/dtas-sourceedit.txt
73
+ - Documentation/dtas-splitfx.txt
74
+ - Documentation/dtas-tl.txt
71
75
  - Documentation/dtas-xdelay.txt
72
76
  files:
73
77
  - .gitignore
@@ -85,6 +89,8 @@ files:
85
89
  - Documentation/dtas-player_sink_examples.txt
86
90
  - Documentation/dtas-sinkedit.txt
87
91
  - Documentation/dtas-sourceedit.txt
92
+ - Documentation/dtas-splitfx.txt
93
+ - Documentation/dtas-tl.txt
88
94
  - Documentation/dtas-xdelay.txt
89
95
  - GIT-VERSION-GEN
90
96
  - GNUmakefile
@@ -101,9 +107,13 @@ files:
101
107
  - bin/dtas-player
102
108
  - bin/dtas-sinkedit
103
109
  - bin/dtas-sourceedit
110
+ - bin/dtas-splitfx
111
+ - bin/dtas-tl
104
112
  - bin/dtas-xdelay
105
113
  - dtas-linux.gemspec
106
114
  - dtas-mpris.gemspec
115
+ - examples/README
116
+ - examples/splitfx.sample.yml
107
117
  - lib/dtas.rb
108
118
  - lib/dtas/buffer.rb
109
119
  - lib/dtas/buffer/read_write.rb
@@ -133,7 +143,9 @@ files:
133
143
  - lib/dtas/source/file.rb
134
144
  - lib/dtas/source/mp3gain.rb
135
145
  - lib/dtas/source/sox.rb
146
+ - lib/dtas/splitfx.rb
136
147
  - lib/dtas/state_file.rb
148
+ - lib/dtas/tracklist.rb
137
149
  - lib/dtas/unix_accepted.rb
138
150
  - lib/dtas/unix_client.rb
139
151
  - lib/dtas/unix_server.rb
@@ -146,6 +158,7 @@ files:
146
158
  - test/helper.rb
147
159
  - test/player_integration.rb
148
160
  - test/test_buffer.rb
161
+ - test/test_env.rb
149
162
  - test/test_format.rb
150
163
  - test/test_format_change.rb
151
164
  - test/test_player.rb
@@ -159,6 +172,8 @@ files:
159
172
  - test/test_sink_tee_integration.rb
160
173
  - test/test_source_av.rb
161
174
  - test/test_source_sox.rb
175
+ - test/test_splitfx.rb
176
+ - test/test_tracklist.rb
162
177
  - test/test_unixserver.rb
163
178
  - test/test_util.rb
164
179
  - NEWS
@@ -172,6 +187,8 @@ files:
172
187
  - man/dtas-player_sink_examples.7
173
188
  - man/dtas-sinkedit.1
174
189
  - man/dtas-sourceedit.1
190
+ - man/dtas-splitfx.1
191
+ - man/dtas-tl.1
175
192
  - man/dtas-xdelay.1
176
193
  - .gemtest
177
194
  homepage: http://dtas.80x24.org/
@@ -196,7 +213,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
196
213
  version: '0'
197
214
  requirements: []
198
215
  rubyforge_project: dtas
199
- rubygems_version: 2.0.3
216
+ rubygems_version: 2.1.3
200
217
  signing_key:
201
218
  specification_version: 4
202
219
  summary: dtas
@@ -205,10 +222,13 @@ test_files:
205
222
  - test/test_process.rb
206
223
  - test/test_sink_tee_integration.rb
207
224
  - test/test_unixserver.rb
225
+ - test/test_tracklist.rb
226
+ - test/test_splitfx.rb
208
227
  - test/test_source_av.rb
209
228
  - test/test_source_sox.rb
210
229
  - test/test_player.rb
211
230
  - test/test_format_change.rb
231
+ - test/test_env.rb
212
232
  - test/test_rg_integration.rb
213
233
  - test/test_buffer.rb
214
234
  - test/test_sink_pipe_size.rb