ztk 1.16.1 → 1.16.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/README.md +11 -7
  3. data/lib/ztk/version.rb +1 -1
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- NmZiMDg3YWJkN2E2ZDk2NGNmNjIyOGNlNjYwMjFjYTFkOWIyN2NmNw==
4
+ YzM4ZjAxYThhZjBkZDc2NTQ3MDhjYTlmYmYwYjUzNGIzMmQ4ZmIwYw==
5
5
  data.tar.gz: !binary |-
6
- ZjUzNmNhNTMxZjA0YjMwMjFjZjBmNmRmMDkzNjQ1ZjY4NGMyNzc1Mg==
6
+ NDllOTBjMjdjNzc2ZWVkYWE1Yzk5ODA3YWNkMzMzOTI1YTRlY2I0MQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- MWUxODVmZmQ0MWM0ZDI5NmE0MTlmMjIzZjdiMGY4OWNlZmZiMDc5YjkzMjBk
10
- ZjRkZDJiMzJlZTY1NWE4ODExMTVjZmJkZjkxMWE2ZWUyOGJiYTE3NDA2NjJi
11
- OGNjYmY3N2Y4ZTBiNGE1MjA5ZDFiMzZmNGU5YjZjZmRkMjk2MGM=
9
+ YmJkNzI3NzFlMWNhNmNlMGIzNzM2NTcwYzc1OTIxZGQzMTcxZjUzNTk1MWVl
10
+ ZTFhNzI5Mjc5MTFjOTkxODUyZGY3NWNjODg5NTU2YzBlNmNiZWRlZWM5ZDgx
11
+ MmNmMDZiM2Q1ZTYxMzIzOTVhMmE1MDQ3ZDMyMmUwMTc3MjFmZDA=
12
12
  data.tar.gz: !binary |-
13
- MjViOGQ0ZWNmODhhZDAyMDhkNTc0YjFhM2FkYzM4MjNmMDkyZGZjNjE0ZDUz
14
- OGE1ZjljNjhlMGY0NzBiYzYxNTU4YWI4YmEwMGUyYjY4YzIxMGRjMzdiODY2
15
- NjUwNGU0ZTY0NGQyNWU2NDE5NzUyOWQ1YmM1NmIzNjUyYmMzYTE=
13
+ NDM3YjEwODQ0ZWRmMGZkYTU2N2ZjMWNjZTc5ZmU5NGY3NTU4YzFhMTFjY2Nm
14
+ ODk4MTZiNWYxYjhjZjIwZWQxMDQyYmNlZmRiZTM1M2EzY2JhZWU1OTY2Mzdi
15
+ NjUwNWRjMmNmMjZmNTZhMzIwZWIyMTY2OTI1ZWZjYjhmZjMyZjM=
data/README.md CHANGED
@@ -1,28 +1,32 @@
1
1
  [![Gem Version](https://badge.fury.io/rb/ztk.png)](http://badge.fury.io/rb/ztk)
2
- [![Dependency Status](https://gemnasium.com/zpatten/ztk.png)](https://gemnasium.com/zpatten/ztk)
3
2
  [![Build Status](https://secure.travis-ci.org/zpatten/ztk.png)](http://travis-ci.org/zpatten/ztk)
4
3
  [![Coverage Status](https://coveralls.io/repos/zpatten/ztk/badge.png?branch=master)](https://coveralls.io/r/zpatten/ztk)
4
+ [![Dependency Status](https://gemnasium.com/zpatten/ztk.png)](https://gemnasium.com/zpatten/ztk)
5
5
  [![Code Climate](https://codeclimate.com/github/zpatten/ztk.png)](https://codeclimate.com/github/zpatten/ztk)
6
6
 
7
7
  # ZTK
8
8
 
9
9
  Zachary's Tool Kit is a general purpose utility gem, featuring a collection of classes meant to simplify development of complex systems in Ruby.
10
10
 
11
- - **ZTK::Background**
12
-
13
- Easily turn most iterative tasks into a parallel processes and easily leverage multiple cores to speed up processing large sets of data.
14
-
15
11
  - **ZTK::DSL**
16
12
 
17
13
  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.
18
14
 
15
+ - **ZTK::Background**
16
+
17
+ Easily run a processes in the background. Read more at the [ZTK::Background](http://zpatten.github.io/ztk/ZTK/Background.html) documentation.
18
+
19
19
  - **ZTK::Logger**
20
20
 
21
- 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.
21
+ 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. Read more at the [ZTK::Logger](http://zpatten.github.io/ztk/ZTK/Logger.html) documentation.
22
+
23
+ - **ZTK::Parallel**
24
+
25
+ Easily turn most iterative tasks into a parallel processes and easily leverage multiple cores to speed up processing large sets of data. Read more at the [ZTK::Parallel](http://zpatten.github.io/ztk/ZTK/Parallel.html) documentation.
22
26
 
23
27
  - **ZTK::SSH**
24
28
 
25
- 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`.
29
+ 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`. Read more at the [ZTK::SSH](http://zpatten.github.io/ztk/ZTK/SSH.html) documentation.
26
30
 
27
31
  # RUBIES TESTED AGAINST
28
32
 
data/lib/ztk/version.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  module ZTK
2
2
 
3
3
  # ZTK Version String
4
- VERSION = "1.16.1"
4
+ VERSION = "1.16.2"
5
5
 
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ztk
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.16.1
4
+ version: 1.16.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Zachary Patten
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-02-02 00:00:00.000000000 Z
11
+ date: 2014-02-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -345,7 +345,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
345
345
  version: '0'
346
346
  requirements: []
347
347
  rubyforge_project:
348
- rubygems_version: 2.1.11
348
+ rubygems_version: 2.2.1
349
349
  signing_key:
350
350
  specification_version: 4
351
351
  summary: Zachary's Tool Kit