ztk 1.15.1 → 1.15.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +8 -8
  2. data/lib/ztk/version.rb +1 -1
  3. data/ztk.gemspec +2 -20
  4. metadata +3 -45
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- NzNiOWIzNTcwMDQ2NTgyN2JkM2JkNDFmZmE3OTUwZWIzMzExYWM1MQ==
4
+ YTQ5NDM0NzFlZjJhNGRiNTc1NmFhYTlmZWQyMzFhMzc0ODE4ZGU0OQ==
5
5
  data.tar.gz: !binary |-
6
- YzllMGFkNmZlMTQyZTc3YzEyMTdiYTcwZGJmNzAwNTEwZDY5NjgzOQ==
6
+ YzMwYTBiYTEyMWEyYWEyMDQ5NmIwNWRmOWFmNDVmYTdkODExYzMxZQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- ZGRhZTJkMGU3M2JkOTYwZWIzODgyYzFmNTQ3MTY0MDQ2OGY0MmFjNGFjOGEz
10
- ODZlMTYwNTZmOTdmMDRhZWFhN2MxNTlhMWI5MTA3ZjdhZjQ2YzFhYTIyOGMw
11
- ZTE0ZjY5YmM3NTM3MTM4ODE1MDBjZWIyYmVjMjc2Mzc5NWZkYzU=
9
+ NDZjMGVmYjFlMTM2ZWQ5NDY5NWRjMWQ1Y2I1MWE0MDg5NWQ2OWU4NjA2YTli
10
+ ZjNhYjA3YzY0NTQ3MWU2YmQ3ZTkzNmJhZDA2MDc4MGI1YTc1ZTU4NWRjZTg5
11
+ ODk1N2M2NTNmNDY0MzI5ZmQxM2U4NGI2NTEyOWVkM2NmMTJkNmQ=
12
12
  data.tar.gz: !binary |-
13
- NGYwNDRjNWVjNThmYjcyNDQyMmQyZDc2OWEzOWRkNmJhZGYwNmZkNzk3YjMy
14
- YjQxZTBiOTRhZWE0OTJlNWYwZTI1OGI0NTA0MDdkMThhMTZjNDFjMjE5YjAz
15
- MzdhZTE4YzVjODI2MjBjYTk5OWY0MDEzZWExZDc5ZDI5NWM2ZmI=
13
+ ZmJjOWNiZDcwZmIzNGRhYzA0MGM5NDA3ZWRkNDIwMTYwMWM1NGNlMmQ2ZmNh
14
+ YjIyMDdlYWJlY2QxMDJkNTQ3MDkxNzBkZjMwOTg5ZTUwZGEyM2M0Y2Y1MGY4
15
+ NjNlYWMwMTFjMGQyNWNmYTI5MTkxZmZkODY4NDk2ZDBjMDQ2MGM=
@@ -1,6 +1,6 @@
1
1
  module ZTK
2
2
 
3
3
  # ZTK Version String
4
- VERSION = "1.15.1"
4
+ VERSION = "1.15.2"
5
5
 
6
6
  end
@@ -26,26 +26,8 @@ Gem::Specification.new do |spec|
26
26
  spec.version = ZTK::VERSION
27
27
  spec.authors = ["Zachary Patten"]
28
28
  spec.email = ["zachary AT jovelabs DOT com"]
29
- spec.description = <<-EOTEXT
30
- Zachary's Tool Kit is a general purpose utility gem, featuring a collection of classes meant to simplify development of complex systems in Ruby.
31
-
32
- ZTK::Background
33
- ===============
34
- Easily turn most iterative tasks into a parallel processes and easily leverage multiple cores to speed up processing large sets of data.
35
-
36
- ZTK::DSL
37
- ========
38
- Create your own DSL in seconds by inheriting this DSL class. Featuring ActiveRecord style associations where DSL objects can `belong_to` or `has_many` other DSL objects.
39
-
40
- ZTK::Logger
41
- ===========
42
- Based off the core Ruby logger, this is meant to be a drop in replacement. Features added logging information, including PID, uSec time resolution, method and line numbers of logging statements (i.e. the caller). One can seamlessly chain Ruby loggers using ZTK:Logger, for example to output logs to both STDOUT and a log file on disk at the same time; all while maintaining compatibility with the core Ruby logger.
43
-
44
- ZTK::SSH
45
- ========
46
- An SSH class that nicely wraps up all of the SSH gems into a nice uniform interface, complete with transfer progress callbacks. It is meant to function as a drop in replacement, but I admit this has not been heavily tested like in the case of the ZTK::Logger class. It provides the ability to switch between SCP and SFTP for file transfers seamlessly. Full SSH proxy support as well, plus methods to spawn up interactive SSH consoles via `Kernel.exec`.
47
- EOTEXT
48
- spec.summary = %q{Zachary's Tool Kit}
29
+ spec.description = %(Zachary's Tool Kit is a general purpose utility gem, featuring a collection of classes meant to simplify development of complex systems in Ruby.)
30
+ spec.summary = %(Zachary's Tool Kit)
49
31
  spec.homepage = "https://github.com/zpatten/ztk"
50
32
  spec.license = "Apache 2.0"
51
33
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ztk
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.15.1
4
+ version: 1.15.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Zachary Patten
@@ -192,50 +192,8 @@ dependencies:
192
192
  - - ! '>='
193
193
  - !ruby/object:Gem::Version
194
194
  version: '0'
195
- description: ! 'Zachary''s Tool Kit is a general purpose utility gem, featuring a
196
- collection of classes meant to simplify development of complex systems in Ruby.
197
-
198
-
199
- ZTK::Background
200
-
201
- ===============
202
-
203
- Easily turn most iterative tasks into a parallel processes and easily leverage multiple
204
- cores to speed up processing large sets of data.
205
-
206
-
207
- ZTK::DSL
208
-
209
- ========
210
-
211
- Create your own DSL in seconds by inheriting this DSL class. Featuring ActiveRecord
212
- style associations where DSL objects can `belong_to` or `has_many` other DSL objects.
213
-
214
-
215
- ZTK::Logger
216
-
217
- ===========
218
-
219
- Based off the core Ruby logger, this is meant to be a drop in replacement. Features
220
- added logging information, including PID, uSec time resolution, method and line
221
- numbers of logging statements (i.e. the caller). One can seamlessly chain Ruby
222
- loggers using ZTK:Logger, for example to output logs to both STDOUT and a log file
223
- on disk at the same time; all while maintaining compatibility with the core Ruby
224
- logger.
225
-
226
-
227
- ZTK::SSH
228
-
229
- ========
230
-
231
- An SSH class that nicely wraps up all of the SSH gems into a nice uniform interface,
232
- complete with transfer progress callbacks. It is meant to function as a drop in
233
- replacement, but I admit this has not been heavily tested like in the case of the
234
- ZTK::Logger class. It provides the ability to switch between SCP and SFTP for file
235
- transfers seamlessly. Full SSH proxy support as well, plus methods to spawn up
236
- interactive SSH consoles via `Kernel.exec`.
237
-
238
- '
195
+ description: Zachary's Tool Kit is a general purpose utility gem, featuring a collection
196
+ of classes meant to simplify development of complex systems in Ruby.
239
197
  email:
240
198
  - zachary AT jovelabs DOT com
241
199
  executables: