rjack-tarpit 1.2.2 → 1.2.3

Sign up to get free protection for your applications and to get access to all the features.
data/History.rdoc CHANGED
@@ -1,3 +1,6 @@
1
+ === 1.2.3 (2010-12-28)
2
+ * Update rdoc dependency to >= 2.5.11, < 3.1 (3.0.1 works well.)
3
+
1
4
  === 1.2.2 (2010-7-8)
2
5
  * Actually, use both Gem.configuration['gem'] and [command] in gem
3
6
  command tasks (i.e. .gemrc with install: args)
data/README.rdoc CHANGED
@@ -29,15 +29,15 @@ source with maven:
29
29
  require 'mygem/version'
30
30
 
31
31
  require 'rubygems'
32
- gem 'rjack-tarpit', '~> 1.2.2'
32
+ gem 'rjack-tarpit', '~> 1.2.3'
33
33
  require 'rjack-tarpit'
34
34
 
35
35
  t = RJack::TarPit.new( 'mygem', MyGem::VERSION, :java_platform )
36
36
 
37
37
  t.specify do |h|
38
38
  h.developer( "David Kellum", "dek-oss@gravitext.com" )
39
- h.extra_deps += [ [ 'rjack-slf4j', '~> 1.5.11' ],
40
- [ 'rjack-logback, '~> 0.9.18' ] ]
39
+ h.extra_deps += [ [ 'rjack-slf4j', '~> 1.6.1' ],
40
+ [ 'rjack-logback, '~> 1.0' ] ]
41
41
  end
42
42
 
43
43
  file 'Manifest.txt' => [ 'lib/mygem/version.rb' ]
data/Rakefile CHANGED
@@ -14,7 +14,7 @@ t = TarPit.new( 'rjack-tarpit', TarPit::VERSION )
14
14
 
15
15
  t.specify do |h|
16
16
  h.developer( 'David Kellum', 'dek-oss@gravitext.com' )
17
- h.extra_deps += [ [ 'rdoc', '~> 2.4' ],
17
+ h.extra_deps += [ [ 'rdoc', '>= 2.5.11', '< 3.1' ],
18
18
  [ 'rubyforge', '~> 1.0.3' ],
19
19
  [ 'hoe', hoe_version ] ]
20
20
  h.rubyforge_name = 'rjack'
data/lib/rjack-tarpit.rb CHANGED
@@ -21,7 +21,7 @@ module RJack
21
21
  # Provides glue for Rake, Hoe, and Maven by generating tasks.
22
22
  module TarPit
23
23
  # Module version
24
- VERSION = '1.2.2'
24
+ VERSION = '1.2.3'
25
25
 
26
26
  # Construct new task generator by gem name, version, and flags. A descendant
27
27
  # of BaseStrategy is returned.
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 2
8
- - 2
9
- version: 1.2.2
8
+ - 3
9
+ version: 1.2.3
10
10
  platform: ruby
11
11
  authors:
12
12
  - David Kellum
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-07-08 00:00:00 -07:00
17
+ date: 2010-12-28 00:00:00 -08:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -22,12 +22,19 @@ dependencies:
22
22
  prerelease: false
23
23
  requirement: &id001 !ruby/object:Gem::Requirement
24
24
  requirements:
25
- - - ~>
25
+ - - ">="
26
26
  - !ruby/object:Gem::Version
27
27
  segments:
28
28
  - 2
29
- - 4
30
- version: "2.4"
29
+ - 5
30
+ - 11
31
+ version: 2.5.11
32
+ - - <
33
+ - !ruby/object:Gem::Version
34
+ segments:
35
+ - 3
36
+ - 1
37
+ version: "3.1"
31
38
  type: :runtime
32
39
  version_requirements: *id001
33
40
  - !ruby/object:Gem::Dependency
@@ -81,8 +88,8 @@ extensions: []
81
88
  extra_rdoc_files:
82
89
  - Manifest.txt
83
90
  - NOTICE.txt
84
- - README.rdoc
85
91
  - History.rdoc
92
+ - README.rdoc
86
93
  files:
87
94
  - History.rdoc
88
95
  - Manifest.txt