rjack-tarpit 2.1.0-java → 2.1.1-java

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 05427b3a1fa4679307c35999963816eff2042ee5
4
- data.tar.gz: b86a757604ee7cefed86494b3b270e45d5237e6f
3
+ metadata.gz: f90600506fe7478178d9170e3d1984cf19bf7fb9
4
+ data.tar.gz: ce38564c8c1ed9d909c2254b7890f939ef1822d5
5
5
  SHA512:
6
- metadata.gz: da58b4726f880172790e21e199cf4ee7d607388b03ea11173d981bdf240499fcc15332d60ebe68978e8720f7906e71988d5936ffb0be4f90d7667d84dad2ee83
7
- data.tar.gz: 588150eef1d87e9911ac0e9b2d798db3ad5f28a35081e91b5ca0229db848f82dfcfa8967ea687f13d61172269eaab8eea1f262fa588ced087cb73b911d2168b4
6
+ metadata.gz: c29af9fb9060ab3d6aa9e4dd473ebe85358c32deba64c16487327caeb2b56dbbcd9f8db79feca8f501d88870fc549ac92dfd5b3ac1356053cef084ee1c23e145
7
+ data.tar.gz: bcdebf3e15d2651f882ecf9f955513078c53f6efe12ec7838ba653f337c167f45f883e77f12fe4b6d537474425b0d605df22d56f776e5b5f1a18c2c34acc7d17
data/History.rdoc CHANGED
@@ -1,3 +1,12 @@
1
+ === 2.1.1 (2016-7-18)
2
+ * Use unmodified minitest/autorun (at_exit handler) for default
3
+ in-proc test loader to regain compatibility with later minitest
4
+ (gem) versions up through 5.8.4 and 5.9.0
5
+ * Add error handling for when the specfile isn't the caller of
6
+ RJack::TarPit.specify (as observed with jruby's unavoidable
7
+ "jar-dependencies")
8
+ * Broaden rake dependency to [>= 0.9.2.2, < 12] (tested 11.2.2)
9
+
1
10
  === 2.1.0 (2013-12-5)
2
11
  * Drop gemspec (java) dependency on jruby-openssl. This breaks jruby
3
12
  1.6.x compatibility, at minimum, for the rubygems "rake push"
data/NOTICE.txt CHANGED
@@ -1,2 +1,2 @@
1
1
  rjack-tarpit
2
- Copyright (c) 2009-2013 David Kellum
2
+ Copyright (c) 2009-2016 David Kellum
data/README.rdoc CHANGED
@@ -1,7 +1,7 @@
1
1
  = rjack-tarpit
2
2
 
3
- * http://rjack.rubyforge.org/tarpit
4
- * http://rjack.rubyforge.org
3
+ * http://rjack.gravitext.com/tarpit
4
+ * http://rjack.gravitext.com
5
5
  * https://github.com/dekellum/rjack
6
6
 
7
7
  == Description
@@ -15,7 +15,7 @@ gemspec benefits from sensible automation but remains in
15
15
  a <project>.gemspec per Bundler's requirements.
16
16
 
17
17
  For java platform projects, TarPit offers Maven integration via the
18
- rjack-maven[http://rjack.rubyforge.org/maven] gem. Maven
18
+ rjack-maven[http://rjack.gravitext.com/maven] gem. Maven
19
19
  package/install is run as needed, and jars are linked to the gem lib
20
20
  directory for inclusion, with semi-automatic Manifest.txt production.
21
21
  No need to bloat your git repo by checking in every version of every
@@ -113,7 +113,7 @@ works correctly across JRuby 1.6.x and 1.7 in all target environments.
113
113
 
114
114
  == License
115
115
 
116
- Copyright (c) 2009-2013 David Kellum
116
+ Copyright (c) 2009-2016 David Kellum
117
117
 
118
118
  Licensed under the Apache License, Version 2.0 (the "License"); you
119
119
  may not use this file except in compliance with the License. You
data/Rakefile CHANGED
@@ -7,10 +7,6 @@ require 'rjack-tarpit'
7
7
 
8
8
  RJack::TarPit.new( 'rjack-tarpit' ) do |tp|
9
9
 
10
- tp.rdoc_destinations <<
11
- 'dekellum@rubyforge.org:/var/www/gforge-projects/rjack/tarpit'
12
- tp.publish_rdoc_rsync_flags = %w[ -rL ]
13
-
14
10
  desc "Check that README sample has latest version"
15
11
  task :check_sample_version do
16
12
  tp.test_line_match( 'README.rdoc',
@@ -20,3 +16,10 @@ RJack::TarPit.new( 'rjack-tarpit' ) do |tp|
20
16
  [ :gem, :tag, :push ].each { |t| task t => :check_sample_version }
21
17
 
22
18
  end
19
+
20
+ desc "Upload RDOC to Amazon S3 (rdoc.gravitext.com/rjack, Oregon)"
21
+ task :publish_rdoc => [ :clean, :rerdoc ] do
22
+ sh <<-SH
23
+ aws s3 sync --acl public-read doc/ s3://rjack.gravitext.com/tarpit/
24
+ SH
25
+ end
data/lib/rjack-tarpit.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2009-2013 David Kellum
2
+ # Copyright (c) 2009-2016 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2009-2013 David Kellum
2
+ # Copyright (c) 2009-2016 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You
@@ -17,6 +17,6 @@
17
17
  module RJack
18
18
  module TarPit
19
19
  MINOR_VERSION = '2.1'
20
- VERSION = MINOR_VERSION + '.0'
20
+ VERSION = MINOR_VERSION + '.1'
21
21
  end
22
22
  end
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2009-2013 David Kellum
2
+ # Copyright (c) 2009-2016 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2009-2013 David Kellum
2
+ # Copyright (c) 2009-2016 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You may
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2009-2013 David Kellum
2
+ # Copyright (c) 2009-2016 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You may
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2009-2013 David Kellum
2
+ # Copyright (c) 2009-2016 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You may
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2009-2013 David Kellum
2
+ # Copyright (c) 2009-2016 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You may
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2009-2013 David Kellum
2
+ # Copyright (c) 2009-2016 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You may
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2009-2013 David Kellum
2
+ # Copyright (c) 2009-2016 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You may
@@ -27,7 +27,7 @@ module RJack::TarPit
27
27
  def parse_readme( file )
28
28
 
29
29
  in_desc = false
30
- desc = ""
30
+ desc = String.new
31
31
 
32
32
  readme_file_open( file ) do |fin|
33
33
  fin.each do |line|
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2009-2013 David Kellum
2
+ # Copyright (c) 2009-2016 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You may
@@ -54,18 +54,22 @@ module RJack::TarPit
54
54
  spec.extend( SpecHelper )
55
55
  spec.extend( ReadmeParser )
56
56
 
57
- specfile = caller[0] =~ /^(.*\.gemspec)/ && $1
57
+ specfile = caller[0] =~ /^(.+\.gemspec):/ && $1
58
58
 
59
- # Default name to the (name).gemspec that should be calling us
60
- spec.name = File.basename( specfile, ".gemspec" )
59
+ if specfile
60
+ # Default name to the (name).gemspec that should be calling us
61
+ spec.name = File.basename( specfile, ".gemspec" )
61
62
 
62
- # Add project's lib/ to LOAD_PATH for block...
63
- ldir = File.expand_path( File.join( File.dirname( specfile ), 'lib' ) )
64
- $LOAD_PATH.unshift( ldir )
63
+ # Add project's lib/ to LOAD_PATH for block...
64
+ ldir = File.expand_path( File.join( File.dirname( specfile ), 'lib' ) )
65
+ $LOAD_PATH.unshift( ldir )
66
+ end
65
67
 
66
68
  spec.tarpit_specify( &block )
67
69
 
68
- $LOAD_PATH.shift # ...then remove it to avoid pollution
70
+ if specfile
71
+ $LOAD_PATH.shift # ...then remove it to avoid pollution
72
+ end
69
73
 
70
74
  @last_spec = spec
71
75
  end
@@ -149,6 +153,8 @@ module RJack::TarPit
149
153
 
150
154
  yield self if block_given?
151
155
 
156
+ raise "No default or specified name" unless name
157
+
152
158
  @assembly_name ||= name
153
159
  @assembly_version ||= version
154
160
 
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2009-2013 David Kellum
2
+ # Copyright (c) 2009-2016 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You may
@@ -71,19 +71,9 @@ module RJack::TarPit
71
71
 
72
72
  desc "Run minitest tests (in rake process)"
73
73
  task :test do |t,args|
74
- require 'minitest/unit'
75
-
76
- MiniTest::Unit.class_eval do
77
- def self.autorun # :nodoc:
78
- # disable autorun, as we are running ourselves
79
- end
80
- end
81
-
74
+ # Let minitest/autorun at_exit run the test
75
+ require 'minitest/autorun'
82
76
  tfiles.each { |f| load File.expand_path( f ) }
83
-
84
- code = MiniTest::Unit.new.run( ( ENV['TESTOPTS'] || '' ).split )
85
- fail "test failed (#{code})" if code && code > 0
86
- puts
87
77
  end
88
78
 
89
79
  else
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2009-2013 David Kellum
2
+ # Copyright (c) 2009-2016 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You
@@ -1,6 +1,6 @@
1
1
  = jproject
2
2
 
3
- * http://rjack.rubyforge.org/tarpit
3
+ * http://rjack.gravitext.com/tarpit
4
4
 
5
5
  == Description
6
6
 
@@ -7,7 +7,7 @@ require 'jproject'
7
7
 
8
8
  class TestJProject < MiniTest::Unit::TestCase
9
9
 
10
- def test
10
+ def test_load
11
11
  assert_equal( "Hello", JProject::Sample.hello )
12
12
  end
13
13
 
@@ -3,7 +3,7 @@
3
3
  #. jruby.launch.inproc = false
4
4
 
5
5
  #--
6
- # Copyright (c) 2009-2013 David Kellum
6
+ # Copyright (c) 2009-2016 David Kellum
7
7
  #
8
8
  # Licensed under the Apache License, Version 2.0 (the "License"); you
9
9
  # may not use this file except in compliance with the License. You may
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env jruby
2
2
  #.hashdot.profile += jruby-shortlived
3
3
  #--
4
- # Copyright (c) 2009-2013 David Kellum
4
+ # Copyright (c) 2009-2016 David Kellum
5
5
  #
6
6
  # Licensed under the Apache License, Version 2.0 (the "License"); you
7
7
  # may not use this file except in compliance with the License. You
data/test/test_tarpit.rb CHANGED
@@ -2,7 +2,7 @@
2
2
  #.hashdot.profile += jruby-shortlived
3
3
 
4
4
  #--
5
- # Copyright (c) 2009-2013 David Kellum
5
+ # Copyright (c) 2009-2016 David Kellum
6
6
  #
7
7
  # Licensed under the Apache License, Version 2.0 (the "License"); you
8
8
  # may not use this file except in compliance with the License. You
@@ -24,7 +24,7 @@ require 'rjack-tarpit'
24
24
  class TestTarpit < MiniTest::Unit::TestCase
25
25
  include RJack
26
26
 
27
- def test
27
+ def test_load
28
28
  tp = TarPit.new( "rjack-tarpit" )
29
29
  pass #load worked
30
30
 
@@ -1,6 +1,6 @@
1
1
  = rjack-zookeeper
2
2
 
3
- * http://rjack.rubyforge.org/tarpit
3
+ * http://rjack.gravitext.com/tarpit
4
4
 
5
5
  == Description
6
6
 
@@ -8,7 +8,7 @@ A gem packaging of {ZooKeeper}[http://zookeeper.apache.org/] for JRuby.
8
8
 
9
9
  == License
10
10
 
11
- Copyright (c) 2009-2013 David Kellum
11
+ Copyright (c) 2009-2016 David Kellum
12
12
 
13
13
  Licensed under the Apache License, Version 2.0 (the "License"); you
14
14
  may not use this file except in compliance with the License. You
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2009-2013 David Kellum
2
+ # Copyright (c) 2009-2016 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You may
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2009-2013 David Kellum
2
+ # Copyright (c) 2009-2016 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You may
@@ -7,8 +7,8 @@ require 'rjack-zookeeper'
7
7
 
8
8
  class TestZooKeeper < MiniTest::Unit::TestCase
9
9
 
10
- def test
11
- pass #FIXME
10
+ def test_defined
11
+ assert( defined?( RJack::RZooKeeper ) )
12
12
  end
13
13
 
14
14
  end
metadata CHANGED
@@ -1,111 +1,117 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rjack-tarpit
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0
4
+ version: 2.1.1
5
5
  platform: java
6
6
  authors:
7
7
  - David Kellum
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-12-06 00:00:00.000000000 Z
11
+ date: 2016-07-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: rake
15
- version_requirements: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - '>='
18
- - !ruby/object:Gem::Version
19
- version: 0.9.2.2
20
- - - <
21
- - !ruby/object:Gem::Version
22
- version: '11'
23
14
  requirement: !ruby/object:Gem::Requirement
24
15
  requirements:
25
- - - '>='
16
+ - - ">="
26
17
  - !ruby/object:Gem::Version
27
18
  version: 0.9.2.2
28
- - - <
19
+ - - "<"
29
20
  - !ruby/object:Gem::Version
30
- version: '11'
21
+ version: '12'
22
+ name: rake
31
23
  prerelease: false
32
24
  type: :runtime
33
- - !ruby/object:Gem::Dependency
34
- name: rdoc
35
25
  version_requirements: !ruby/object:Gem::Requirement
36
26
  requirements:
37
- - - '>='
27
+ - - ">="
38
28
  - !ruby/object:Gem::Version
39
- version: '3.12'
40
- - - <
29
+ version: 0.9.2.2
30
+ - - "<"
41
31
  - !ruby/object:Gem::Version
42
- version: '5'
32
+ version: '12'
33
+ - !ruby/object:Gem::Dependency
43
34
  requirement: !ruby/object:Gem::Requirement
44
35
  requirements:
45
- - - '>='
36
+ - - ">="
46
37
  - !ruby/object:Gem::Version
47
38
  version: '3.12'
48
- - - <
39
+ - - "<"
49
40
  - !ruby/object:Gem::Version
50
41
  version: '5'
42
+ name: rdoc
51
43
  prerelease: false
52
44
  type: :runtime
53
- - !ruby/object:Gem::Dependency
54
- name: minitest
55
45
  version_requirements: !ruby/object:Gem::Requirement
56
46
  requirements:
57
- - - ~>
47
+ - - ">="
58
48
  - !ruby/object:Gem::Version
59
- version: 4.7.4
49
+ version: '3.12'
50
+ - - "<"
51
+ - !ruby/object:Gem::Version
52
+ version: '5'
53
+ - !ruby/object:Gem::Dependency
60
54
  requirement: !ruby/object:Gem::Requirement
61
55
  requirements:
62
- - - ~>
56
+ - - ">="
63
57
  - !ruby/object:Gem::Version
64
58
  version: 4.7.4
59
+ - - "<"
60
+ - !ruby/object:Gem::Version
61
+ version: '6'
62
+ name: minitest
65
63
  prerelease: false
66
64
  type: :development
67
- - !ruby/object:Gem::Dependency
68
- name: rjack-maven
69
65
  version_requirements: !ruby/object:Gem::Requirement
70
66
  requirements:
71
- - - ~>
67
+ - - ">="
72
68
  - !ruby/object:Gem::Version
73
- version: 3.0.4
69
+ version: 4.7.4
70
+ - - "<"
71
+ - !ruby/object:Gem::Version
72
+ version: '6'
73
+ - !ruby/object:Gem::Dependency
74
74
  requirement: !ruby/object:Gem::Requirement
75
75
  requirements:
76
- - - ~>
76
+ - - "~>"
77
77
  - !ruby/object:Gem::Version
78
78
  version: 3.0.4
79
+ name: rjack-maven
79
80
  prerelease: false
80
81
  type: :runtime
81
- - !ruby/object:Gem::Dependency
82
- name: rjack-slf4j
83
82
  version_requirements: !ruby/object:Gem::Requirement
84
83
  requirements:
85
- - - ~>
84
+ - - "~>"
86
85
  - !ruby/object:Gem::Version
87
- version: 1.7.0
86
+ version: 3.0.4
87
+ - !ruby/object:Gem::Dependency
88
88
  requirement: !ruby/object:Gem::Requirement
89
89
  requirements:
90
- - - ~>
90
+ - - "~>"
91
91
  - !ruby/object:Gem::Version
92
92
  version: 1.7.0
93
+ name: rjack-slf4j
93
94
  prerelease: false
94
95
  type: :development
95
- - !ruby/object:Gem::Dependency
96
- name: rjack-logback
97
96
  version_requirements: !ruby/object:Gem::Requirement
98
97
  requirements:
99
- - - ~>
98
+ - - "~>"
100
99
  - !ruby/object:Gem::Version
101
- version: '1.5'
100
+ version: 1.7.0
101
+ - !ruby/object:Gem::Dependency
102
102
  requirement: !ruby/object:Gem::Requirement
103
103
  requirements:
104
- - - ~>
104
+ - - "~>"
105
105
  - !ruby/object:Gem::Version
106
106
  version: '1.5'
107
+ name: rjack-logback
107
108
  prerelease: false
108
109
  type: :development
110
+ version_requirements: !ruby/object:Gem::Requirement
111
+ requirements:
112
+ - - "~>"
113
+ - !ruby/object:Gem::Version
114
+ version: '1.5'
109
115
  description: TarPit provides the glue for an unholy union of build tools. TarPit includes general automation for any rubygems project. It originally used and remains heavily influenced by Hoe (e.g. Manifest.txt.) However, it fully supports use of Bundler. The gemspec benefits from sensible automation but remains in a <project>.gemspec per Bundler's requirements.
110
116
  email:
111
117
  - dek-oss@gravitext.com
@@ -120,8 +126,8 @@ files:
120
126
  - NOTICE.txt
121
127
  - README.rdoc
122
128
  - Rakefile
123
- - lib/rjack-tarpit/base.rb
124
129
  - lib/rjack-tarpit.rb
130
+ - lib/rjack-tarpit/base.rb
125
131
  - lib/rjack-tarpit/base_strategy.rb
126
132
  - lib/rjack-tarpit/clean.rb
127
133
  - lib/rjack-tarpit/doc.rb
@@ -132,10 +138,6 @@ files:
132
138
  - lib/rjack-tarpit/spec.rb
133
139
  - lib/rjack-tarpit/test.rb
134
140
  - lib/rjack-tarpit/util.rb
135
- - test/setup.rb
136
- - test/test_projects.rb
137
- - test/test_readme_parser.rb
138
- - test/test_tarpit.rb
139
141
  - test/jproject/History.rdoc
140
142
  - test/jproject/Manifest.static
141
143
  - test/jproject/Manifest.txt
@@ -143,45 +145,49 @@ files:
143
145
  - test/jproject/README.rdoc
144
146
  - test/jproject/Rakefile
145
147
  - test/jproject/jproject.gemspec
146
- - test/jproject/pom.xml
147
- - test/jproject/lib/jproject/base.rb
148
148
  - test/jproject/lib/jproject.rb
149
+ - test/jproject/lib/jproject/base.rb
150
+ - test/jproject/pom.xml
149
151
  - test/jproject/test/setup.rb
150
152
  - test/jproject/test/test_jproject.rb
153
+ - test/setup.rb
154
+ - test/test_projects.rb
155
+ - test/test_readme_parser.rb
156
+ - test/test_tarpit.rb
151
157
  - test/zookeeper/History.rdoc
152
158
  - test/zookeeper/Manifest.static
153
159
  - test/zookeeper/Manifest.txt
154
160
  - test/zookeeper/README.rdoc
155
161
  - test/zookeeper/Rakefile
156
162
  - test/zookeeper/assembly.xml
163
+ - test/zookeeper/lib/rjack-zookeeper.rb
164
+ - test/zookeeper/lib/rjack-zookeeper/base.rb
157
165
  - test/zookeeper/pom.xml
158
166
  - test/zookeeper/rjack-zookeeper.gemspec
159
- - test/zookeeper/lib/rjack-zookeeper/base.rb
160
- - test/zookeeper/lib/rjack-zookeeper.rb
161
167
  - test/zookeeper/test/setup.rb
162
168
  - test/zookeeper/test/test_zookeeper.rb
163
- homepage: http://rjack.rubyforge.org/tarpit
169
+ homepage: http://rjack.gravitext.com/tarpit
164
170
  licenses: []
165
171
  metadata: {}
166
172
  post_install_message:
167
173
  rdoc_options:
168
- - --main
174
+ - "--main"
169
175
  - README.rdoc
170
176
  require_paths:
171
177
  - lib
172
178
  required_ruby_version: !ruby/object:Gem::Requirement
173
179
  requirements:
174
- - - '>='
180
+ - - ">="
175
181
  - !ruby/object:Gem::Version
176
182
  version: '0'
177
183
  required_rubygems_version: !ruby/object:Gem::Requirement
178
184
  requirements:
179
- - - '>='
185
+ - - ">="
180
186
  - !ruby/object:Gem::Version
181
187
  version: '0'
182
188
  requirements: []
183
189
  rubyforge_project:
184
- rubygems_version: 2.1.9
190
+ rubygems_version: 2.6.4
185
191
  signing_key:
186
192
  specification_version: 4
187
193
  summary: TarPit provides the glue for an unholy union of build tools. TarPit includes general automation for any rubygems project. It originally used and remains heavily influenced by Hoe (e.g. Manifest.txt.) However, it fully supports use of Bundler.