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.
@@ -1,36 +1,29 @@
1
1
  require 'rubygems'
2
2
 
3
- spec = Gem::Specification.new do |gem|
4
- gem.name = 'win32-taskscheduler'
5
- gem.version = '0.2.0'
6
- gem.authors = ['Park Heesob', 'Daniel J. Berger']
7
- gem.email = 'djberg96@gmail.com'
8
- gem.homepage = 'http://www.rubyforge.org/projects/win32utils'
9
- gem.rubyforge_project = 'win32utils'
10
- gem.platform = Gem::Platform::RUBY
11
- gem.summary = 'A library for the Windows task scheduler'
12
- gem.has_rdoc = true
13
- gem.test_files = Dir['test/test*']
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
- gem.extra_rdoc_files = [
18
- 'README',
19
- 'CHANGES',
20
- 'MANIFEST',
21
- 'doc/taskscheduler.txt'
22
- ]
15
+ spec.rubyforge_project = 'win32utils'
23
16
 
24
- gem.required_ruby_version = '>= 1.8.0'
17
+ spec.extra_rdoc_files = [
18
+ 'README',
19
+ 'CHANGES',
20
+ 'MANIFEST',
21
+ 'doc/taskscheduler.txt'
22
+ ]
25
23
 
26
- gem.description = <<-EOF
27
- The win32-taskscheduler library provides an interface to the MS Windows
28
- Task Scheduler. With this interface you can create new scheduled tasks,
29
- configure existing tasks, or delete tasks.
30
- EOF
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
- version: 0.2.0
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: 2009-06-19 00:00:00 -06:00
14
- default_executable:
19
+ date: 2011-10-08 00:00:00 Z
15
20
  dependencies: []
16
21
 
17
- 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"
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
- version: 1.8.0
52
- version:
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.3.4
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