win32-taskscheduler 0.2.0 → 0.2.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.
- data/CHANGES +17 -0
- data/README +61 -53
- data/Rakefile +19 -39
- data/lib/win32/taskscheduler.rb +1442 -1430
- data/test/test_taskscheduler.rb +522 -508
- data/win32-taskscheduler.gemspec +23 -30
- metadata +19 -9
data/win32-taskscheduler.gemspec
CHANGED
@@ -1,36 +1,29 @@
|
|
1
1
|
require 'rubygems'
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
gem.files = Dir['**/*'].delete_if{ |f| f.include?('CVS') || f.include?('ext') }
|
15
|
-
gem.license = 'Artistic 2.0'
|
3
|
+
Gem::Specification.new do |spec|
|
4
|
+
spec.name = 'win32-taskscheduler'
|
5
|
+
spec.version = '0.2.1'
|
6
|
+
spec.authors = ['Park Heesob', 'Daniel J. Berger']
|
7
|
+
spec.license = 'Artistic 2.0'
|
8
|
+
spec.email = 'djberg96@gmail.com'
|
9
|
+
spec.homepage = 'http://www.rubyforge.org/projects/win32utils'
|
10
|
+
spec.platform = Gem::Platform::RUBY
|
11
|
+
spec.summary = 'A library for the Windows task scheduler'
|
12
|
+
spec.test_files = Dir['test/test*']
|
13
|
+
spec.files = Dir['**/*'].reject{ |f| f.include?('git') }
|
16
14
|
|
17
|
-
|
18
|
-
'README',
|
19
|
-
'CHANGES',
|
20
|
-
'MANIFEST',
|
21
|
-
'doc/taskscheduler.txt'
|
22
|
-
]
|
15
|
+
spec.rubyforge_project = 'win32utils'
|
23
16
|
|
24
|
-
|
17
|
+
spec.extra_rdoc_files = [
|
18
|
+
'README',
|
19
|
+
'CHANGES',
|
20
|
+
'MANIFEST',
|
21
|
+
'doc/taskscheduler.txt'
|
22
|
+
]
|
25
23
|
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
end
|
32
|
-
|
33
|
-
if $0 == __FILE__
|
34
|
-
Gem.manage_gems if Gem::RubyGemsVersion.to_f < 1.0
|
35
|
-
Gem::Builder.new(spec).build
|
24
|
+
spec.description = <<-EOF
|
25
|
+
The win32-taskscheduler library provides an interface to the MS Windows
|
26
|
+
Task Scheduler. With this interface you can create new scheduled tasks,
|
27
|
+
configure existing tasks, or delete tasks.
|
28
|
+
EOF
|
36
29
|
end
|
metadata
CHANGED
@@ -1,7 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: win32-taskscheduler
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
hash: 21
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 2
|
9
|
+
- 1
|
10
|
+
version: 0.2.1
|
5
11
|
platform: ruby
|
6
12
|
authors:
|
7
13
|
- Park Heesob
|
@@ -10,11 +16,10 @@ autorequire:
|
|
10
16
|
bindir: bin
|
11
17
|
cert_chain: []
|
12
18
|
|
13
|
-
date:
|
14
|
-
default_executable:
|
19
|
+
date: 2011-10-08 00:00:00 Z
|
15
20
|
dependencies: []
|
16
21
|
|
17
|
-
description: "
|
22
|
+
description: " The win32-taskscheduler library provides an interface to the MS Windows\n Task Scheduler. With this interface you can create new scheduled tasks,\n configure existing tasks, or delete tasks.\n"
|
18
23
|
email: djberg96@gmail.com
|
19
24
|
executables: []
|
20
25
|
|
@@ -35,7 +40,6 @@ files:
|
|
35
40
|
- README
|
36
41
|
- test/test_taskscheduler.rb
|
37
42
|
- win32-taskscheduler.gemspec
|
38
|
-
has_rdoc: true
|
39
43
|
homepage: http://www.rubyforge.org/projects/win32utils
|
40
44
|
licenses:
|
41
45
|
- Artistic 2.0
|
@@ -45,21 +49,27 @@ rdoc_options: []
|
|
45
49
|
require_paths:
|
46
50
|
- lib
|
47
51
|
required_ruby_version: !ruby/object:Gem::Requirement
|
52
|
+
none: false
|
48
53
|
requirements:
|
49
54
|
- - ">="
|
50
55
|
- !ruby/object:Gem::Version
|
51
|
-
|
52
|
-
|
56
|
+
hash: 3
|
57
|
+
segments:
|
58
|
+
- 0
|
59
|
+
version: "0"
|
53
60
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
61
|
+
none: false
|
54
62
|
requirements:
|
55
63
|
- - ">="
|
56
64
|
- !ruby/object:Gem::Version
|
65
|
+
hash: 3
|
66
|
+
segments:
|
67
|
+
- 0
|
57
68
|
version: "0"
|
58
|
-
version:
|
59
69
|
requirements: []
|
60
70
|
|
61
71
|
rubyforge_project: win32utils
|
62
|
-
rubygems_version: 1.
|
72
|
+
rubygems_version: 1.8.10
|
63
73
|
signing_key:
|
64
74
|
specification_version: 3
|
65
75
|
summary: A library for the Windows task scheduler
|