trinidad_dbpool 0.3.1 → 0.4.0
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/History.txt +22 -0
- data/LICENSE +1 -1
- data/Rakefile +68 -0
- data/lib/trinidad_dbpool.rb +0 -5
- data/lib/trinidad_dbpool/webapp_extension.rb +5 -6
- data/trinidad-libs/tomcat-dbcp.jar +0 -0
- metadata +71 -53
- data/VERSION +0 -1
data/History.txt
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
== 0.3.0 (2011-07-01)
|
|
2
|
+
|
|
3
|
+
* Oracle connection pool extension
|
|
4
|
+
* Mssql connection pool extension
|
|
5
|
+
* Postgresql syntax error fix
|
|
6
|
+
* Add support for multiple pools per db extension
|
|
7
|
+
|
|
8
|
+
== 0.2.0 (2010-07-29)
|
|
9
|
+
|
|
10
|
+
* Update trinidad_dbpool_extension common gem to support Tomcat 7
|
|
11
|
+
|
|
12
|
+
== 0.1.1 (2010-05-05)
|
|
13
|
+
|
|
14
|
+
* Update trinidad_dbpool_extension common gem
|
|
15
|
+
* Remove adding jndi context and resource to the global tomcat context
|
|
16
|
+
|
|
17
|
+
== 0.1.0 (2010-04-04)
|
|
18
|
+
|
|
19
|
+
* First release
|
|
20
|
+
* General connection pool extension
|
|
21
|
+
* Mysql connection pool extension
|
|
22
|
+
* Postgresql connection pool extension
|
data/LICENSE
CHANGED
data/Rakefile
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
require 'rubygems'
|
|
2
|
+
require 'rake'
|
|
3
|
+
|
|
4
|
+
def build(gem)
|
|
5
|
+
mkdir_p 'pkg'
|
|
6
|
+
sh "gem build #{gem}.gemspec"
|
|
7
|
+
mv Dir["#{gem}*.gem"].last, 'pkg'
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
def release(gem, version = nil)
|
|
11
|
+
unless `git branch` =~ /^\* master$/
|
|
12
|
+
raise "must be on master to release !"
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
if version
|
|
16
|
+
unless gem_file = Dir.glob("pkg/#{gem}-#{version}.gem").first
|
|
17
|
+
raise "#{gem}-#{version}.gem not build !"
|
|
18
|
+
end
|
|
19
|
+
else
|
|
20
|
+
unless gem_file = Dir.glob("pkg/#{gem}*").sort.last
|
|
21
|
+
raise "#{gem}*.gem not build !"
|
|
22
|
+
end
|
|
23
|
+
unless match = gem_file.match(/.*?\-(\d\.\d\.\d)\.gem/)
|
|
24
|
+
raise "version number not matched from: #{gem_file}"
|
|
25
|
+
end
|
|
26
|
+
version = match[1]
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
sh "git tag #{gem}-#{version}"
|
|
30
|
+
sh "git push origin master --tags"
|
|
31
|
+
sh "gem push #{gem_file}"
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
all_gems = %W{ dbpool mysql_dbpool_extension postgresql_dbpool_extension mssql_dbpool_extension oracle_dbpool_extension }
|
|
35
|
+
all_gems.map! { |gem| "trinidad_#{gem}" }
|
|
36
|
+
all_gems.each do |gem_name|
|
|
37
|
+
namespace gem_name do
|
|
38
|
+
desc "Build the #{gem_name} gem"
|
|
39
|
+
task :build do
|
|
40
|
+
build(gem_name)
|
|
41
|
+
end
|
|
42
|
+
desc "Release the #{gem_name} gem"
|
|
43
|
+
task :release => :build do
|
|
44
|
+
release(gem_name)
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
{
|
|
50
|
+
:build => 'Build all connection pool gems',
|
|
51
|
+
:release => 'Release all connection pool gems'
|
|
52
|
+
}.each do |t, d|
|
|
53
|
+
desc d
|
|
54
|
+
task t => all_gems.map { |name| "#{name}:#{t}" } # e.g. mysql_dbpool:build
|
|
55
|
+
end
|
|
56
|
+
|
|
57
|
+
desc "Clear out all built .gem files"
|
|
58
|
+
task :clear do
|
|
59
|
+
FileUtils.rm Dir["*.gem"]
|
|
60
|
+
FileUtils.rm_r Dir["pkg/*"] if File.exist?("pkg")
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
require 'rspec/core/rake_task'
|
|
64
|
+
RSpec::Core::RakeTask.new(:spec) do |spec|
|
|
65
|
+
spec.rspec_opts = ['--color', "--format documentation"]
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
task :default => :spec
|
data/lib/trinidad_dbpool.rb
CHANGED
|
@@ -9,21 +9,20 @@ module Trinidad
|
|
|
9
9
|
@options.map { |opts| create_resource tomcat, app_context, opts }
|
|
10
10
|
end
|
|
11
11
|
end
|
|
12
|
-
|
|
12
|
+
|
|
13
13
|
private
|
|
14
14
|
def create_resource tomcat, app_context, opts
|
|
15
|
-
jndi = opts.delete(:jndi)
|
|
16
|
-
url = opts.delete(:url)
|
|
15
|
+
jndi, url = opts.delete(:jndi), opts.delete(:url)
|
|
17
16
|
url = protocol + url unless %r{^#{protocol}} =~ url
|
|
18
17
|
opts[:url] = url
|
|
19
18
|
|
|
20
19
|
driver_name = opts.delete(:driver) || self.driver_name
|
|
21
|
-
|
|
20
|
+
|
|
22
21
|
resource = Trinidad::Tomcat::ContextResource.new
|
|
23
|
-
resource.set_auth(opts.delete(:auth)) if opts.
|
|
22
|
+
resource.set_auth(opts.delete(:auth)) if opts.has_key?(:auth)
|
|
23
|
+
resource.set_description(opts.delete(:description)) if opts.has_key?(:description)
|
|
24
24
|
resource.set_name(jndi)
|
|
25
25
|
resource.set_type('javax.sql.DataSource')
|
|
26
|
-
resource.set_description(opts.delete(:description)) if opts.key?(:description)
|
|
27
26
|
|
|
28
27
|
opts.each { |key, value| resource.set_property(key.to_s, value.to_s) }
|
|
29
28
|
resource.set_property('driverClassName', driver_name)
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,75 +1,93 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: trinidad_dbpool
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.1
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
5
4
|
prerelease:
|
|
5
|
+
version: 0.4.0
|
|
6
6
|
platform: ruby
|
|
7
|
-
authors:
|
|
8
|
-
- David Calavera
|
|
7
|
+
authors:
|
|
8
|
+
- David Calavera
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
12
|
+
|
|
13
|
+
date: 2012-05-31 00:00:00 Z
|
|
14
|
+
dependencies:
|
|
15
|
+
- !ruby/object:Gem::Dependency
|
|
16
|
+
name: trinidad_jars
|
|
17
|
+
prerelease: false
|
|
18
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
19
|
+
none: false
|
|
20
|
+
requirements:
|
|
21
|
+
- - ">="
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: 1.0.2
|
|
24
|
+
type: :runtime
|
|
25
|
+
version_requirements: *id001
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: rspec
|
|
28
|
+
prerelease: false
|
|
29
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
|
30
|
+
none: false
|
|
31
|
+
requirements:
|
|
32
|
+
- - ">="
|
|
33
|
+
- !ruby/object:Gem::Version
|
|
34
|
+
version: "2.10"
|
|
35
|
+
type: :development
|
|
36
|
+
version_requirements: *id002
|
|
37
|
+
- !ruby/object:Gem::Dependency
|
|
38
|
+
name: mocha
|
|
39
|
+
prerelease: false
|
|
40
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
|
41
|
+
none: false
|
|
42
|
+
requirements:
|
|
43
|
+
- - ">="
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: "0.10"
|
|
46
|
+
type: :development
|
|
47
|
+
version_requirements: *id003
|
|
36
48
|
description: Addon to support database pools in Trinidad
|
|
37
49
|
email: calavera@apache.org
|
|
38
50
|
executables: []
|
|
51
|
+
|
|
39
52
|
extensions: []
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
-
|
|
46
|
-
-
|
|
47
|
-
-
|
|
48
|
-
-
|
|
49
|
-
-
|
|
53
|
+
|
|
54
|
+
extra_rdoc_files:
|
|
55
|
+
- LICENSE
|
|
56
|
+
- README.rdoc
|
|
57
|
+
files:
|
|
58
|
+
- lib/trinidad_dbpool.rb
|
|
59
|
+
- lib/trinidad_dbpool/webapp_extension.rb
|
|
60
|
+
- trinidad-libs/tomcat-dbcp.jar
|
|
61
|
+
- History.txt
|
|
62
|
+
- LICENSE
|
|
63
|
+
- README.rdoc
|
|
64
|
+
- Rakefile
|
|
50
65
|
homepage: http://github.com/trinidad/trinidad_dbpool_extension
|
|
51
66
|
licenses: []
|
|
67
|
+
|
|
52
68
|
post_install_message:
|
|
53
69
|
rdoc_options: []
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
70
|
+
|
|
71
|
+
require_paths:
|
|
72
|
+
- lib
|
|
73
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
57
74
|
none: false
|
|
58
|
-
requirements:
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
|
+
requirements:
|
|
76
|
+
- - ">="
|
|
77
|
+
- !ruby/object:Gem::Version
|
|
78
|
+
version: "0"
|
|
79
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
63
80
|
none: false
|
|
64
|
-
requirements:
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
81
|
+
requirements:
|
|
82
|
+
- - ">="
|
|
83
|
+
- !ruby/object:Gem::Version
|
|
84
|
+
version: "0"
|
|
68
85
|
requirements: []
|
|
86
|
+
|
|
69
87
|
rubyforge_project:
|
|
70
|
-
rubygems_version: 1.8.
|
|
88
|
+
rubygems_version: 1.8.15
|
|
71
89
|
signing_key:
|
|
72
90
|
specification_version: 3
|
|
73
91
|
summary: Addon to support database pools in Trinidad
|
|
74
92
|
test_files: []
|
|
75
|
-
|
|
93
|
+
|
data/VERSION
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
0.3.1
|