trinidad_generic_dbpool_extension 0.7.0 → 0.8.0

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: f082c4f454960ed258f3032338fde1bf15a8f99f
4
- data.tar.gz: 7be340e7ff7f874c91ecce636cdcfc5ad9387c69
3
+ metadata.gz: c6b9d597fbd49dc9a053c9cec15f1e33fd3900f1
4
+ data.tar.gz: f5a3017296b236b48f8845576540ff1dfe2cf8ec
5
5
  SHA512:
6
- metadata.gz: 904ca906251fa348e7fe47ae31f0f76e5c1d9bab0e3ef5ab9c6ac06f3129c08dc383c4f4f649be28ac66d24881e7383d07c53246d0060e8d52f55dc7a4cc76b6
7
- data.tar.gz: 1a1a8582b7c2d0f03126c9d1b0458523d6e12942f06f65d2b0f44208211d49e2051e4b5b336e3bf80cbc393d9fc8832beb9d0bd33a30731de96eaca6226a8f71
6
+ metadata.gz: ad2a6d9aad32a5d29d19325e39f64829ef6c6af9ca4e5bedca2ee631a9051eea1515cb64301220b4028cec4759f2c8f24ffa1764722f387c04d921a785cbd9a7
7
+ data.tar.gz: a7f3e8ac7fc7c89f20938a70736d1b8d829b38f1522b61b49800c0ec282fa75a4b5600e63d4efd747a4949eb84ba345ca2b74be661b598464deb492878c0b83f
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2013 Team Trinidad and contributors http://github.com/trinidad
1
+ Copyright (c) 2014 Team Trinidad and contributors http://github.com/trinidad
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -30,8 +30,8 @@ http://tomcat.apache.org/tomcat-7.0-doc/jdbc-pool.html
30
30
  default:
31
31
  extensions:
32
32
  mysql_dbpool: # EXTENSION NAME AS KEY
33
- jndi: 'jdbc/MySampleDB' # name (linked with database.yml)
34
- url: 'localhost:3306/sample' # database URL (or full jdbc: URL)
33
+ name: jdbc/MySampleDB # name (linked with database.yml)
34
+ url: localhost:3306/sample # database URL (or full jdbc: URL)
35
35
  username: root
36
36
  password: root
37
37
  maxActive: 100 # maximum number of connections managed by the pool
@@ -39,9 +39,9 @@ http://tomcat.apache.org/tomcat-7.0-doc/jdbc-pool.html
39
39
  maxWait: 10000 # ms the pool waits for a connection to be returned
40
40
  ```
41
41
 
42
- **jndi**, **url** are mandatory (as well **username** and **password** if your
43
- database server + driver requires authentication), while other supported
44
- configuration options might be found here in Tomcat's JDBC pool documentation :
42
+ **name** (aliased as **jndi**), **url** are mandatory (as well **username** and
43
+ **password** if your database server + driver requires authentication), while
44
+ the other supported options might be found in Tomcat's JDBC pool documentation :
45
45
 
46
46
  http://tomcat.apache.org/tomcat-7.0-doc/jdbc-pool.html#Common_Attributes
47
47
 
@@ -113,5 +113,5 @@ Beyond standard configuration options there's 2 specific options here :
113
113
 
114
114
  ## Copyright
115
115
 
116
- Copyright (c) 2013 [Team Trinidad](https://github.com/trinidad).
116
+ Copyright (c) 2016 [Team Trinidad](https://github.com/trinidad).
117
117
  See LICENSE (http://en.wikipedia.org/wiki/MIT_License) for details.
@@ -1,3 +1,5 @@
1
+ require 'trinidad_dbpool/webapp_extension'
2
+
1
3
  module Trinidad
2
4
  module Extensions
3
5
  class GenericDbpoolWebAppExtension < DbpoolWebAppExtension
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trinidad_generic_dbpool_extension
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Patrick Cheng
@@ -9,22 +9,22 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-12-11 00:00:00.000000000 Z
12
+ date: 2016-07-14 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
- name: trinidad_dbpool
16
- version_requirements: !ruby/object:Gem::Requirement
17
- requirements:
18
- - - '>='
19
- - !ruby/object:Gem::Version
20
- version: 0.7.0
21
15
  requirement: !ruby/object:Gem::Requirement
22
16
  requirements:
23
- - - '>='
17
+ - - ">="
24
18
  - !ruby/object:Gem::Version
25
- version: 0.7.0
19
+ version: 0.8.0
20
+ name: trinidad_dbpool
26
21
  prerelease: false
27
22
  type: :runtime
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ">="
26
+ - !ruby/object:Gem::Version
27
+ version: 0.8.0
28
28
  description: Addon to support generic database pools in Trinidad
29
29
  email:
30
30
  - patrickyccheng@gmail.com
@@ -36,11 +36,11 @@ extra_rdoc_files:
36
36
  - History.txt
37
37
  - LICENSE
38
38
  files:
39
- - lib/trinidad_generic_dbpool_extension.rb
40
- - lib/trinidad_generic_dbpool_extension/generic_webapp_extension.rb
41
- - README.md
42
39
  - History.txt
43
40
  - LICENSE
41
+ - README.md
42
+ - lib/trinidad_generic_dbpool_extension.rb
43
+ - lib/trinidad_generic_dbpool_extension/generic_webapp_extension.rb
44
44
  homepage: http://github.com/trinidad/trinidad_dbpool_extension
45
45
  licenses: []
46
46
  metadata: {}
@@ -50,17 +50,17 @@ require_paths:
50
50
  - lib
51
51
  required_ruby_version: !ruby/object:Gem::Requirement
52
52
  requirements:
53
- - - '>='
53
+ - - ">="
54
54
  - !ruby/object:Gem::Version
55
55
  version: '0'
56
56
  required_rubygems_version: !ruby/object:Gem::Requirement
57
57
  requirements:
58
- - - '>='
58
+ - - ">="
59
59
  - !ruby/object:Gem::Version
60
60
  version: '0'
61
61
  requirements: []
62
62
  rubyforge_project:
63
- rubygems_version: 2.1.9
63
+ rubygems_version: 2.4.8
64
64
  signing_key:
65
65
  specification_version: 4
66
66
  summary: Addon to support generic database pools in Trinidad