hosttag 0.12

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.
Files changed (49) hide show
  1. data/.gitignore +2 -0
  2. data/ChangeLog +44 -0
  3. data/EXCLUDE +3 -0
  4. data/LICENCE +674 -0
  5. data/README +92 -0
  6. data/Rakefile +30 -0
  7. data/TODO +4 -0
  8. data/bin/hosttag +168 -0
  9. data/bin/ht +168 -0
  10. data/bin/htdel +164 -0
  11. data/bin/htdump +70 -0
  12. data/bin/htexport +99 -0
  13. data/bin/htimport +81 -0
  14. data/bin/htremap +93 -0
  15. data/bin/htset +164 -0
  16. data/etc/Makefile +16 -0
  17. data/etc/README +10 -0
  18. data/hosttag.gemspec +23 -0
  19. data/hosttag.spec +179 -0
  20. data/lib/hosttag.rb +402 -0
  21. data/lib/hosttag/server.rb +35 -0
  22. data/test/data_hosttag/a/centos +0 -0
  23. data/test/data_hosttag/a/centos5 +0 -0
  24. data/test/data_hosttag/a/centos5-x86_64 +0 -0
  25. data/test/data_hosttag/a/public +0 -0
  26. data/test/data_hosttag/g/SKIP +0 -0
  27. data/test/data_hosttag/g/centos +0 -0
  28. data/test/data_hosttag/g/centos4 +0 -0
  29. data/test/data_hosttag/g/centos4-i386 +0 -0
  30. data/test/data_hosttag/h/SKIP +0 -0
  31. data/test/data_hosttag/h/centos +0 -0
  32. data/test/data_hosttag/h/centos4 +0 -0
  33. data/test/data_hosttag/h/centos4-x86_64 +0 -0
  34. data/test/data_hosttag/h/public +0 -0
  35. data/test/data_hosttag/m/centos +0 -0
  36. data/test/data_hosttag/m/centos4 +0 -0
  37. data/test/data_hosttag/m/centos4-x86_64 +0 -0
  38. data/test/data_hosttag/m/public +0 -0
  39. data/test/data_hosttag/m/vps +0 -0
  40. data/test/data_hosttag/n/centos +0 -0
  41. data/test/data_hosttag/n/centos5 +0 -0
  42. data/test/data_hosttag/n/centos5-i386 +0 -0
  43. data/test/data_hosttag/n/laptop +0 -0
  44. data/test/test_hosttag_bin.rb +70 -0
  45. data/test/test_hosttag_lib.rb +119 -0
  46. data/test/test_htset_bin.rb +174 -0
  47. data/test/test_htset_lib.rb +183 -0
  48. data/test/ts_all.rb +4 -0
  49. metadata +132 -0
@@ -0,0 +1,4 @@
1
+ require 'test_hosttag_lib.rb'
2
+ require 'test_hosttag_bin.rb'
3
+ require 'test_htset_lib.rb'
4
+ require 'test_htset_bin.rb'
metadata ADDED
@@ -0,0 +1,132 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: hosttag
3
+ version: !ruby/object:Gem::Version
4
+ hash: 19
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 12
9
+ version: "0.12"
10
+ platform: ruby
11
+ authors:
12
+ - Gavin Carr
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2011-11-21 00:00:00 +11:00
18
+ default_executable:
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: redis
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - ~>
27
+ - !ruby/object:Gem::Version
28
+ hash: 3
29
+ segments:
30
+ - 2
31
+ - 0
32
+ version: "2.0"
33
+ type: :runtime
34
+ version_requirements: *id001
35
+ description: |-
36
+ Hosttag is a client for tagging hostnames into groups or classes,
37
+ storing them in a redis datastore
38
+ email:
39
+ - gavin@openfusion.net
40
+ executables: []
41
+
42
+ extensions: []
43
+
44
+ extra_rdoc_files: []
45
+
46
+ files:
47
+ - .gitignore
48
+ - ChangeLog
49
+ - EXCLUDE
50
+ - LICENCE
51
+ - README
52
+ - Rakefile
53
+ - TODO
54
+ - bin/hosttag
55
+ - bin/ht
56
+ - bin/htdel
57
+ - bin/htdump
58
+ - bin/htexport
59
+ - bin/htimport
60
+ - bin/htremap
61
+ - bin/htset
62
+ - etc/Makefile
63
+ - etc/README
64
+ - hosttag.gemspec
65
+ - hosttag.spec
66
+ - lib/hosttag.rb
67
+ - lib/hosttag/server.rb
68
+ - test/data_hosttag/a/centos
69
+ - test/data_hosttag/a/centos5
70
+ - test/data_hosttag/a/centos5-x86_64
71
+ - test/data_hosttag/a/public
72
+ - test/data_hosttag/g/SKIP
73
+ - test/data_hosttag/g/centos
74
+ - test/data_hosttag/g/centos4
75
+ - test/data_hosttag/g/centos4-i386
76
+ - test/data_hosttag/h/SKIP
77
+ - test/data_hosttag/h/centos
78
+ - test/data_hosttag/h/centos4
79
+ - test/data_hosttag/h/centos4-x86_64
80
+ - test/data_hosttag/h/public
81
+ - test/data_hosttag/m/centos
82
+ - test/data_hosttag/m/centos4
83
+ - test/data_hosttag/m/centos4-x86_64
84
+ - test/data_hosttag/m/public
85
+ - test/data_hosttag/m/vps
86
+ - test/data_hosttag/n/centos
87
+ - test/data_hosttag/n/centos5
88
+ - test/data_hosttag/n/centos5-i386
89
+ - test/data_hosttag/n/laptop
90
+ - test/test_hosttag_bin.rb
91
+ - test/test_hosttag_lib.rb
92
+ - test/test_htset_bin.rb
93
+ - test/test_htset_lib.rb
94
+ - test/ts_all.rb
95
+ has_rdoc: true
96
+ homepage: http://github.com/gavincarr/hosttag
97
+ licenses: []
98
+
99
+ post_install_message:
100
+ rdoc_options: []
101
+
102
+ require_paths:
103
+ - lib
104
+ required_ruby_version: !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ">="
108
+ - !ruby/object:Gem::Version
109
+ hash: 3
110
+ segments:
111
+ - 0
112
+ version: "0"
113
+ required_rubygems_version: !ruby/object:Gem::Requirement
114
+ none: false
115
+ requirements:
116
+ - - ">="
117
+ - !ruby/object:Gem::Version
118
+ hash: 23
119
+ segments:
120
+ - 1
121
+ - 3
122
+ - 6
123
+ version: 1.3.6
124
+ requirements: []
125
+
126
+ rubyforge_project: hosttag
127
+ rubygems_version: 1.3.7
128
+ signing_key:
129
+ specification_version: 3
130
+ summary: Hosttag is a client for tagging hostnames into classes using a redis datastore
131
+ test_files: []
132
+