rbatch 1.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (62) hide show
  1. data/CHANGELOG +25 -0
  2. data/LICENSE +0 -0
  3. data/README.ja.md +280 -0
  4. data/README.md +280 -0
  5. data/Rakefile +66 -0
  6. data/VERSION +1 -0
  7. data/doc/rdoc/CHANGELOG.html +160 -0
  8. data/doc/rdoc/LICENSE.html +94 -0
  9. data/doc/rdoc/RBatch.html +476 -0
  10. data/doc/rdoc/RBatch/Cmd.html +329 -0
  11. data/doc/rdoc/RBatch/CmdException.html +154 -0
  12. data/doc/rdoc/RBatch/CmdResult.html +492 -0
  13. data/doc/rdoc/RBatch/Log.html +739 -0
  14. data/doc/rdoc/created.rid +8 -0
  15. data/doc/rdoc/images/brick.png +0 -0
  16. data/doc/rdoc/images/brick_link.png +0 -0
  17. data/doc/rdoc/images/bug.png +0 -0
  18. data/doc/rdoc/images/bullet_black.png +0 -0
  19. data/doc/rdoc/images/bullet_toggle_minus.png +0 -0
  20. data/doc/rdoc/images/bullet_toggle_plus.png +0 -0
  21. data/doc/rdoc/images/date.png +0 -0
  22. data/doc/rdoc/images/find.png +0 -0
  23. data/doc/rdoc/images/loadingAnimation.gif +0 -0
  24. data/doc/rdoc/images/macFFBgHack.png +0 -0
  25. data/doc/rdoc/images/package.png +0 -0
  26. data/doc/rdoc/images/page_green.png +0 -0
  27. data/doc/rdoc/images/page_white_text.png +0 -0
  28. data/doc/rdoc/images/page_white_width.png +0 -0
  29. data/doc/rdoc/images/plugin.png +0 -0
  30. data/doc/rdoc/images/ruby.png +0 -0
  31. data/doc/rdoc/images/tag_green.png +0 -0
  32. data/doc/rdoc/images/wrench.png +0 -0
  33. data/doc/rdoc/images/wrench_orange.png +0 -0
  34. data/doc/rdoc/images/zoom.png +0 -0
  35. data/doc/rdoc/index.html +124 -0
  36. data/doc/rdoc/js/darkfish.js +116 -0
  37. data/doc/rdoc/js/jquery.js +32 -0
  38. data/doc/rdoc/js/quicksearch.js +114 -0
  39. data/doc/rdoc/js/thickbox-compressed.js +10 -0
  40. data/doc/rdoc/lib/rbatch/cmd_rb.html +56 -0
  41. data/doc/rdoc/lib/rbatch/config_rb.html +56 -0
  42. data/doc/rdoc/lib/rbatch/log_rb.html +58 -0
  43. data/doc/rdoc/lib/rbatch_rb.html +58 -0
  44. data/doc/rdoc/rdoc.css +706 -0
  45. data/lib/rbatch.rb +51 -0
  46. data/lib/rbatch/cmd.rb +118 -0
  47. data/lib/rbatch/config.rb +29 -0
  48. data/lib/rbatch/log.rb +205 -0
  49. data/sample/bin/file_batch_copy.rb +9 -0
  50. data/sample/bin/openldap_backup.rb +7 -0
  51. data/sample/bin/test.rb +12 -0
  52. data/sample/config/file_batch_copy.yaml +5 -0
  53. data/sample/config/openldap_backup.yaml +2 -0
  54. data/sample/config/rbatch.yaml +68 -0
  55. data/sample/log/empty +0 -0
  56. data/test/cases/test_cmd.rb +120 -0
  57. data/test/cases/test_config.rb +34 -0
  58. data/test/cases/test_log.rb +594 -0
  59. data/test/config/rbatch.yaml +0 -0
  60. data/test/mocks/PrintArgs.exe +0 -0
  61. data/test/mocks/win_cmd.exe +0 -0
  62. metadata +173 -0
File without changes
Binary file
Binary file
metadata ADDED
@@ -0,0 +1,173 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rbatch
3
+ version: !ruby/object:Gem::Version
4
+ prerelease:
5
+ version: 1.4.0
6
+ platform: ruby
7
+ authors:
8
+ - fetaro
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2013-01-09 00:00:00 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: shoulda
17
+ requirement: &id001 !ruby/object:Gem::Requirement
18
+ none: false
19
+ requirements:
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: "0"
23
+ type: :development
24
+ prerelease: false
25
+ version_requirements: *id001
26
+ - !ruby/object:Gem::Dependency
27
+ name: rdoc
28
+ requirement: &id002 !ruby/object:Gem::Requirement
29
+ none: false
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: "3.12"
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: *id002
37
+ - !ruby/object:Gem::Dependency
38
+ name: bundler
39
+ requirement: &id003 !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - ~>
43
+ - !ruby/object:Gem::Version
44
+ version: 1.0.0
45
+ type: :development
46
+ prerelease: false
47
+ version_requirements: *id003
48
+ - !ruby/object:Gem::Dependency
49
+ name: jeweler
50
+ requirement: &id004 !ruby/object:Gem::Requirement
51
+ none: false
52
+ requirements:
53
+ - - ~>
54
+ - !ruby/object:Gem::Version
55
+ version: 1.8.4
56
+ type: :development
57
+ prerelease: false
58
+ version_requirements: *id004
59
+ - !ruby/object:Gem::Dependency
60
+ name: rcov
61
+ requirement: &id005 !ruby/object:Gem::Requirement
62
+ none: false
63
+ requirements:
64
+ - - ">="
65
+ - !ruby/object:Gem::Version
66
+ version: "0"
67
+ type: :development
68
+ prerelease: false
69
+ version_requirements: *id005
70
+ description: Ruby-based batch framework
71
+ email: fetaro@gmail.com
72
+ executables: []
73
+
74
+ extensions: []
75
+
76
+ extra_rdoc_files:
77
+ - LICENSE
78
+ - README.ja.md
79
+ - README.md
80
+ files:
81
+ - CHANGELOG
82
+ - LICENSE
83
+ - README.ja.md
84
+ - README.md
85
+ - Rakefile
86
+ - VERSION
87
+ - doc/rdoc/CHANGELOG.html
88
+ - doc/rdoc/LICENSE.html
89
+ - doc/rdoc/RBatch.html
90
+ - doc/rdoc/RBatch/Cmd.html
91
+ - doc/rdoc/RBatch/CmdException.html
92
+ - doc/rdoc/RBatch/CmdResult.html
93
+ - doc/rdoc/RBatch/Log.html
94
+ - doc/rdoc/created.rid
95
+ - doc/rdoc/images/brick.png
96
+ - doc/rdoc/images/brick_link.png
97
+ - doc/rdoc/images/bug.png
98
+ - doc/rdoc/images/bullet_black.png
99
+ - doc/rdoc/images/bullet_toggle_minus.png
100
+ - doc/rdoc/images/bullet_toggle_plus.png
101
+ - doc/rdoc/images/date.png
102
+ - doc/rdoc/images/find.png
103
+ - doc/rdoc/images/loadingAnimation.gif
104
+ - doc/rdoc/images/macFFBgHack.png
105
+ - doc/rdoc/images/package.png
106
+ - doc/rdoc/images/page_green.png
107
+ - doc/rdoc/images/page_white_text.png
108
+ - doc/rdoc/images/page_white_width.png
109
+ - doc/rdoc/images/plugin.png
110
+ - doc/rdoc/images/ruby.png
111
+ - doc/rdoc/images/tag_green.png
112
+ - doc/rdoc/images/wrench.png
113
+ - doc/rdoc/images/wrench_orange.png
114
+ - doc/rdoc/images/zoom.png
115
+ - doc/rdoc/index.html
116
+ - doc/rdoc/js/darkfish.js
117
+ - doc/rdoc/js/jquery.js
118
+ - doc/rdoc/js/quicksearch.js
119
+ - doc/rdoc/js/thickbox-compressed.js
120
+ - doc/rdoc/lib/rbatch/cmd_rb.html
121
+ - doc/rdoc/lib/rbatch/config_rb.html
122
+ - doc/rdoc/lib/rbatch/log_rb.html
123
+ - doc/rdoc/lib/rbatch_rb.html
124
+ - doc/rdoc/rdoc.css
125
+ - lib/rbatch.rb
126
+ - lib/rbatch/cmd.rb
127
+ - lib/rbatch/config.rb
128
+ - lib/rbatch/log.rb
129
+ - sample/bin/file_batch_copy.rb
130
+ - sample/bin/openldap_backup.rb
131
+ - sample/bin/test.rb
132
+ - sample/config/file_batch_copy.yaml
133
+ - sample/config/openldap_backup.yaml
134
+ - sample/config/rbatch.yaml
135
+ - sample/log/empty
136
+ - test/cases/test_cmd.rb
137
+ - test/cases/test_config.rb
138
+ - test/cases/test_log.rb
139
+ - test/config/rbatch.yaml
140
+ - test/mocks/PrintArgs.exe
141
+ - test/mocks/win_cmd.exe
142
+ homepage: http://github.com/fetaro/rbatch
143
+ licenses:
144
+ - MIT
145
+ post_install_message:
146
+ rdoc_options: []
147
+
148
+ require_paths:
149
+ - lib
150
+ required_ruby_version: !ruby/object:Gem::Requirement
151
+ none: false
152
+ requirements:
153
+ - - ">="
154
+ - !ruby/object:Gem::Version
155
+ hash: -3404148642425244593
156
+ segments:
157
+ - 0
158
+ version: "0"
159
+ required_rubygems_version: !ruby/object:Gem::Requirement
160
+ none: false
161
+ requirements:
162
+ - - ">="
163
+ - !ruby/object:Gem::Version
164
+ version: "0"
165
+ requirements: []
166
+
167
+ rubyforge_project:
168
+ rubygems_version: 1.7.1
169
+ signing_key:
170
+ specification_version: 3
171
+ summary: Ruby-based batch framework
172
+ test_files: []
173
+