rjack-commons-dbutils 1.5.0-java → 1.6.0-java

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 955f0ec90867e1cc23fceabe13b9850f5de34aeb
4
+ data.tar.gz: 23796f51ae53407ad8100450dfd072448ac9ed42
5
+ SHA512:
6
+ metadata.gz: 5eeb66322943e6656364c3d50739ca40bc23c11810df8cf22e3211db8deeb47b2c649768fe2a6d1cdc2aeb353c7ee319976c628080ed77091695347953963d1b
7
+ data.tar.gz: 150292bdfae57d779b52017980e59299f7a1c63c5712f0f25a79bc9c1b03ebfcf7baaf32c58c849088337473cdd8e82d6c9aad751f355db2ecc7e730e6116631
@@ -1,4 +1,8 @@
1
+ === 1.6.0 (2014-8-19)
2
+ * Upgrade to commons-dbutils 1.6
3
+
1
4
  === 1.5.0 (2012-11-9)
5
+ * Upgrade to commons-dbutils 1.5
2
6
 
3
7
  === 1.4.0 (2012-1-15)
4
8
  * Upgrade to commons-dbutils 1.4
@@ -8,4 +8,4 @@ pom.xml
8
8
  lib/rjack-commons-dbutils/base.rb
9
9
  lib/rjack-commons-dbutils.rb
10
10
  test/test_dbutils.rb
11
- lib/rjack-commons-dbutils/commons-dbutils-1.5.jar
11
+ lib/rjack-commons-dbutils/commons-dbutils-1.6.jar
data/NOTICE.txt CHANGED
@@ -1,5 +1,5 @@
1
1
  rjack-commons-dbutils gem
2
- Copyright (c) 2009-2012 David Kellum
2
+ Copyright (c) 2009-2014 David Kellum
3
3
 
4
4
  This product includes software developed by:
5
5
 
@@ -1,7 +1,7 @@
1
1
  = rjack-commons-dbutils
2
2
 
3
- * http://rjack.rubyforge.org/commons-dbutils
4
- * http://rjack.rubyforge.org
3
+ * http://rjack.gravitext.com/commons-dbutils
4
+ * http://rjack.gravitext.com
5
5
  * https://github.com/dekellum/rjack
6
6
 
7
7
  == Description
@@ -12,7 +12,7 @@ A gem packaging of {Commons DbUtils}[http://commons.apache.org/dbutils/]
12
12
 
13
13
  === rjack-commons-dbutils gem
14
14
 
15
- Copyright (c) 2009-2012 David Kellum
15
+ Copyright (c) 2009-2014 David Kellum
16
16
 
17
17
  Licensed under the Apache License, Version 2.0 (the "License"); you
18
18
  may not use this file except in compliance with the License. You
data/Rakefile CHANGED
@@ -4,9 +4,11 @@ require 'rubygems'
4
4
  require 'bundler/setup'
5
5
  require 'rjack-tarpit'
6
6
 
7
- RJack::TarPit.new( 'rjack-commons-dbutils' ) do |tp|
8
-
9
- tp.rdoc_destinations <<
10
- 'dekellum@rubyforge.org:/var/www/gforge-projects/rjack/commons-dbutils'
7
+ RJack::TarPit.new( 'rjack-commons-dbutils' ).define_tasks
11
8
 
9
+ desc "Upload RDOC to Amazon S3 (rdoc.gravitext.com/rjack, Oregon)"
10
+ task :publish_rdoc => [ :clean, :rerdoc ] do
11
+ sh <<-SH
12
+ aws s3 sync --acl public-read doc/ s3://rjack.gravitext.com/commons-dbutils/
13
+ SH
12
14
  end
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2009-2012 David Kellum
2
+ # Copyright (c) 2009-2014 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-2012 David Kellum
2
+ # Copyright (c) 2009-2014 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
@@ -18,7 +18,7 @@ module RJack
18
18
  module CommonsDbUtils
19
19
 
20
20
  # Commons dbutils (java) version
21
- DBUTILS_VERSION = '1.5'
21
+ DBUTILS_VERSION = '1.6'
22
22
 
23
23
  # rjack gem version
24
24
  VERSION = DBUTILS_VERSION + '.0'
data/pom.xml CHANGED
@@ -15,7 +15,7 @@
15
15
  <dependency>
16
16
  <groupId>commons-dbutils</groupId>
17
17
  <artifactId>commons-dbutils</artifactId>
18
- <version>1.5</version>
18
+ <version>1.6</version>
19
19
  </dependency>
20
20
  </dependencies>
21
21
 
@@ -2,7 +2,7 @@
2
2
  #.hashdot.profile += jruby-shortlived
3
3
 
4
4
  #--
5
- # Copyright (c) 2012 David Kellum
5
+ # Copyright (c) 2009-2014 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 may
metadata CHANGED
@@ -1,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rjack-commons-dbutils
3
3
  version: !ruby/object:Gem::Version
4
- prerelease:
5
- version: 1.5.0
4
+ version: 1.6.0
6
5
  platform: java
7
6
  authors:
8
7
  - David Kellum
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2012-11-10 00:00:00.000000000 Z
11
+ date: 2014-08-20 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: minitest
@@ -17,14 +16,26 @@ dependencies:
17
16
  requirements:
18
17
  - - ~>
19
18
  - !ruby/object:Gem::Version
20
- version: '2.2'
21
- none: false
19
+ version: 4.7.4
22
20
  requirement: !ruby/object:Gem::Requirement
23
21
  requirements:
24
22
  - - ~>
25
23
  - !ruby/object:Gem::Version
26
- version: '2.2'
27
- none: false
24
+ version: 4.7.4
25
+ prerelease: false
26
+ type: :development
27
+ - !ruby/object:Gem::Dependency
28
+ name: rdoc
29
+ version_requirements: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: 4.0.1
34
+ requirement: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ~>
37
+ - !ruby/object:Gem::Version
38
+ version: 4.0.1
28
39
  prerelease: false
29
40
  type: :development
30
41
  - !ruby/object:Gem::Dependency
@@ -33,14 +44,12 @@ dependencies:
33
44
  requirements:
34
45
  - - ~>
35
46
  - !ruby/object:Gem::Version
36
- version: '2.0'
37
- none: false
47
+ version: '2.1'
38
48
  requirement: !ruby/object:Gem::Requirement
39
49
  requirements:
40
50
  - - ~>
41
51
  - !ruby/object:Gem::Version
42
- version: '2.0'
43
- none: false
52
+ version: '2.1'
44
53
  prerelease: false
45
54
  type: :development
46
55
  description:
@@ -62,9 +71,10 @@ files:
62
71
  - lib/rjack-commons-dbutils/base.rb
63
72
  - lib/rjack-commons-dbutils.rb
64
73
  - test/test_dbutils.rb
65
- - lib/rjack-commons-dbutils/commons-dbutils-1.5.jar
66
- homepage: http://rjack.rubyforge.org/commons-dbutils
74
+ - lib/rjack-commons-dbutils/commons-dbutils-1.6.jar
75
+ homepage: http://rjack.gravitext.com/commons-dbutils
67
76
  licenses: []
77
+ metadata: {}
68
78
  post_install_message:
69
79
  rdoc_options:
70
80
  - --main
@@ -73,27 +83,18 @@ require_paths:
73
83
  - lib
74
84
  required_ruby_version: !ruby/object:Gem::Requirement
75
85
  requirements:
76
- - - ! '>='
86
+ - - '>='
77
87
  - !ruby/object:Gem::Version
78
88
  version: '0'
79
- segments:
80
- - 0
81
- hash: 2
82
- none: false
83
89
  required_rubygems_version: !ruby/object:Gem::Requirement
84
90
  requirements:
85
- - - ! '>='
91
+ - - '>='
86
92
  - !ruby/object:Gem::Version
87
93
  version: '0'
88
- segments:
89
- - 0
90
- hash: 2
91
- none: false
92
94
  requirements: []
93
95
  rubyforge_project:
94
- rubygems_version: 1.8.24
96
+ rubygems_version: 2.1.9
95
97
  signing_key:
96
- specification_version: 3
98
+ specification_version: 4
97
99
  summary: A gem packaging of Commons DbUtils
98
100
  test_files: []
99
- ...