SciMed-bj 1.2.4
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.
- data/HISTORY +83 -0
- data/LICENSE +1 -0
- data/README +318 -0
- data/Rakefile +22 -0
- data/SciMed-bj.gemspec +77 -0
- data/TODO +53 -0
- data/VERSION +1 -0
- data/bin/bj +692 -0
- data/init.rb +1 -0
- data/install.rb +214 -0
- data/lib/bj.rb +85 -0
- data/lib/bj/api.rb +164 -0
- data/lib/bj/bj.rb +72 -0
- data/lib/bj/errors.rb +4 -0
- data/lib/bj/joblist.rb +112 -0
- data/lib/bj/logger.rb +51 -0
- data/lib/bj/runner.rb +369 -0
- data/lib/bj/stdext.rb +86 -0
- data/lib/bj/table.rb +426 -0
- data/lib/bj/util.rb +133 -0
- data/plugin/HISTORY +3 -0
- data/plugin/README +142 -0
- data/plugin/Rakefile +22 -0
- data/plugin/init.rb +33 -0
- data/plugin/install.rb +95 -0
- data/plugin/script/bj +55 -0
- data/plugin/tasks/bj_tasks.rake +4 -0
- data/plugin/test/bj_test.rb +8 -0
- data/plugin/uninstall.rb +1 -0
- data/todo.yml +23 -0
- metadata +149 -0
data/plugin/uninstall.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
# Uninstall hook code here
|
data/todo.yml
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
todo:
|
4
|
+
|
5
|
+
- handle the timezone issue
|
6
|
+
|
7
|
+
- fix docs regarding the number of runners that get automatically spawned
|
8
|
+
|
9
|
+
- deal with text vs. varchar?
|
10
|
+
|
11
|
+
- fix the command-line submission
|
12
|
+
|
13
|
+
- make setting up via notickle easier
|
14
|
+
|
15
|
+
- make crontab setup easier
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
done:
|
20
|
+
|
21
|
+
- move from attributes.rb to fattr.rb
|
22
|
+
|
23
|
+
|
metadata
ADDED
@@ -0,0 +1,149 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: SciMed-bj
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 23
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 2
|
9
|
+
- 4
|
10
|
+
version: 1.2.4
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Ara T. Howard
|
14
|
+
- Joshua Warchol
|
15
|
+
- Jens Kraemer
|
16
|
+
autorequire:
|
17
|
+
bindir: bin
|
18
|
+
cert_chain: []
|
19
|
+
|
20
|
+
date: 2011-08-23 00:00:00 -04:00
|
21
|
+
default_executable: bj
|
22
|
+
dependencies:
|
23
|
+
- !ruby/object:Gem::Dependency
|
24
|
+
name: main
|
25
|
+
prerelease: false
|
26
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
27
|
+
none: false
|
28
|
+
requirements:
|
29
|
+
- - ">="
|
30
|
+
- !ruby/object:Gem::Version
|
31
|
+
hash: 23
|
32
|
+
segments:
|
33
|
+
- 2
|
34
|
+
- 6
|
35
|
+
- 0
|
36
|
+
version: 2.6.0
|
37
|
+
type: :runtime
|
38
|
+
version_requirements: *id001
|
39
|
+
- !ruby/object:Gem::Dependency
|
40
|
+
name: systemu
|
41
|
+
prerelease: false
|
42
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
43
|
+
none: false
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
hash: 31
|
48
|
+
segments:
|
49
|
+
- 1
|
50
|
+
- 2
|
51
|
+
- 0
|
52
|
+
version: 1.2.0
|
53
|
+
type: :runtime
|
54
|
+
version_requirements: *id002
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: orderedhash
|
57
|
+
prerelease: false
|
58
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
59
|
+
none: false
|
60
|
+
requirements:
|
61
|
+
- - ">="
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
hash: 25
|
64
|
+
segments:
|
65
|
+
- 0
|
66
|
+
- 0
|
67
|
+
- 3
|
68
|
+
version: 0.0.3
|
69
|
+
type: :runtime
|
70
|
+
version_requirements: *id003
|
71
|
+
description: Forked ahoward/bj because the way the bin/bj before_run method interacts with Main's logger= instance menthod breaks in Ruby 1.8.7. Forked again to add missing 'require logger'
|
72
|
+
email:
|
73
|
+
- josh.warchol@vibes.com
|
74
|
+
- jk@jkraemer.net
|
75
|
+
executables:
|
76
|
+
- bj
|
77
|
+
extensions: []
|
78
|
+
|
79
|
+
extra_rdoc_files:
|
80
|
+
- LICENSE
|
81
|
+
- README
|
82
|
+
- TODO
|
83
|
+
files:
|
84
|
+
- HISTORY
|
85
|
+
- LICENSE
|
86
|
+
- README
|
87
|
+
- Rakefile
|
88
|
+
- SciMed-bj.gemspec
|
89
|
+
- TODO
|
90
|
+
- VERSION
|
91
|
+
- bin/bj
|
92
|
+
- init.rb
|
93
|
+
- install.rb
|
94
|
+
- lib/bj.rb
|
95
|
+
- lib/bj/api.rb
|
96
|
+
- lib/bj/bj.rb
|
97
|
+
- lib/bj/errors.rb
|
98
|
+
- lib/bj/joblist.rb
|
99
|
+
- lib/bj/logger.rb
|
100
|
+
- lib/bj/runner.rb
|
101
|
+
- lib/bj/stdext.rb
|
102
|
+
- lib/bj/table.rb
|
103
|
+
- lib/bj/util.rb
|
104
|
+
- plugin/HISTORY
|
105
|
+
- plugin/README
|
106
|
+
- plugin/Rakefile
|
107
|
+
- plugin/init.rb
|
108
|
+
- plugin/install.rb
|
109
|
+
- plugin/script/bj
|
110
|
+
- plugin/tasks/bj_tasks.rake
|
111
|
+
- plugin/test/bj_test.rb
|
112
|
+
- plugin/uninstall.rb
|
113
|
+
- todo.yml
|
114
|
+
has_rdoc: true
|
115
|
+
homepage: http://github.com/jkraemer/bj
|
116
|
+
licenses: []
|
117
|
+
|
118
|
+
post_install_message:
|
119
|
+
rdoc_options: []
|
120
|
+
|
121
|
+
require_paths:
|
122
|
+
- lib
|
123
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
124
|
+
none: false
|
125
|
+
requirements:
|
126
|
+
- - ">="
|
127
|
+
- !ruby/object:Gem::Version
|
128
|
+
hash: 3
|
129
|
+
segments:
|
130
|
+
- 0
|
131
|
+
version: "0"
|
132
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
133
|
+
none: false
|
134
|
+
requirements:
|
135
|
+
- - ">="
|
136
|
+
- !ruby/object:Gem::Version
|
137
|
+
hash: 3
|
138
|
+
segments:
|
139
|
+
- 0
|
140
|
+
version: "0"
|
141
|
+
requirements: []
|
142
|
+
|
143
|
+
rubyforge_project:
|
144
|
+
rubygems_version: 1.4.2
|
145
|
+
signing_key:
|
146
|
+
specification_version: 3
|
147
|
+
summary: Minor fork of ahoward/bj
|
148
|
+
test_files: []
|
149
|
+
|