ztk 2.0.0 → 2.0.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
- data/README.md +2 -4
- data/lib/ztk/version.rb +1 -1
- data/ztk.gemspec +14 -12
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7c749fb44dbb0ecd765c34c686477ee483614417
|
|
4
|
+
data.tar.gz: b6745ca013f7956ba362807542a97f9aa8f9a3f2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 463364a8b5774faf2e1a5f1c27235c023a0950c10040147d045e525ae2d77d3542c24eb928b8b95bcb6e6f5f2d79be698709e1ccfeb9245dc493125da1cb0431
|
|
7
|
+
data.tar.gz: baa62c1544cef40fb385180fd6a947db0f8dadf0814ac05647421853c858ef260069ee0803abd466ab07d7d8b243bbfbb72b0fe77932ab91a69a25b1df6e851d
|
data/README.md
CHANGED
|
@@ -74,17 +74,15 @@ Zachary's Tool Kit contains a collection of reusable classes meant to simplify d
|
|
|
74
74
|
|
|
75
75
|
# RUBIES TESTED AGAINST
|
|
76
76
|
|
|
77
|
-
* Ruby 1.8.7 (REE)
|
|
78
|
-
* Ruby 1.8.7 (MBARI)
|
|
79
|
-
* Ruby 1.9.2
|
|
80
77
|
* Ruby 1.9.3
|
|
81
78
|
* Ruby 2.0.0
|
|
79
|
+
* Ruby 2.1.0
|
|
82
80
|
|
|
83
81
|
# RESOURCES
|
|
84
82
|
|
|
85
83
|
IRC:
|
|
86
84
|
|
|
87
|
-
* #
|
|
85
|
+
* #ztk on irc.freenode.net
|
|
88
86
|
|
|
89
87
|
Documentation:
|
|
90
88
|
|
data/lib/ztk/version.rb
CHANGED
data/ztk.gemspec
CHANGED
|
@@ -22,19 +22,21 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
22
22
|
require 'ztk/version'
|
|
23
23
|
|
|
24
24
|
Gem::Specification.new do |spec|
|
|
25
|
-
spec.name
|
|
26
|
-
spec.version
|
|
27
|
-
spec.authors
|
|
28
|
-
spec.email
|
|
29
|
-
spec.description
|
|
30
|
-
spec.summary
|
|
31
|
-
spec.homepage
|
|
32
|
-
spec.license
|
|
25
|
+
spec.name = "ztk"
|
|
26
|
+
spec.version = ZTK::VERSION
|
|
27
|
+
spec.authors = %(Zachary Patten)
|
|
28
|
+
spec.email = [ %(zachary AT jovelabs DOT com) ]
|
|
29
|
+
spec.description = %(Zachary's Tool Kit contains a collection of reusable classes meant to simplify development of complex systems in Ruby, especially devops tooling. These classes provide functionality I often find myself needing from project to project. Instead of reinventing the wheel each time, I've started building a collection of reusable classes. Easy-bake DSLs, parallel processing, complex logging, templating and many other useful design patterns, for example are all contained in simple, reusable classes with a common interface and configuration style.)
|
|
30
|
+
spec.summary = %(Zachary's Tool Kit contains a collection of reusable classes meant to simplify development of complex systems in Ruby, especially devops tooling.)
|
|
31
|
+
spec.homepage = "https://github.com/zpatten/ztk"
|
|
32
|
+
spec.license = "Apache 2.0"
|
|
33
33
|
|
|
34
|
-
spec.files
|
|
35
|
-
spec.executables
|
|
36
|
-
spec.test_files
|
|
37
|
-
spec.require_paths
|
|
34
|
+
spec.files = `git ls-files`.split($\)
|
|
35
|
+
spec.executables = spec.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
|
36
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
37
|
+
spec.require_paths = ["lib"]
|
|
38
|
+
|
|
39
|
+
spec.required_ruby_version = '>= 1.9.3'
|
|
38
40
|
|
|
39
41
|
spec.add_dependency("activesupport")
|
|
40
42
|
spec.add_dependency("erubis")
|
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: 2.0.
|
|
4
|
+
version: 2.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Zachary Patten
|
|
@@ -356,7 +356,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
356
356
|
requirements:
|
|
357
357
|
- - ">="
|
|
358
358
|
- !ruby/object:Gem::Version
|
|
359
|
-
version:
|
|
359
|
+
version: 1.9.3
|
|
360
360
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
361
361
|
requirements:
|
|
362
362
|
- - ">="
|