trinidad_mssql_dbpool_extension 0.7.0 → 0.8.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 722ade66b5ef0f1870d3bb2dc6431c7876f9785c
4
- data.tar.gz: 8f7128f98739a49f4b7138eccb82fbe1de1432fc
3
+ metadata.gz: 3136ca11c1ab02550e3179f155590d311b71ae97
4
+ data.tar.gz: 788d68630ae2d62010bed981cb22dfd089d745f3
5
5
  SHA512:
6
- metadata.gz: 71864b24c13d3a37e6035521b9f51c66106328ab3e146770f022da1e99b9ffd5e2ffe417d5c10e0e0f5404ac65eaef5da6d336ed9768508130b68f2f5669c1fa
7
- data.tar.gz: 4eb11a7f5fe4757c604317c51bb04c16f6e0e327290db91eae1b2339172f4f921da309f3105f647adde2f958e5a62e0afaf00b33210cc62cc7cbe9079203cdf0
6
+ metadata.gz: bb1a370914a4faa57d3241cacb44c293f3da70fbed9c7c797e99a994d112c73521c1cb9fb09af91de3e0f9055b33d69f3c32570c9245ba99a20e2e14aabead3e
7
+ data.tar.gz: e0566b452812386d0c972df1bf467a8f5e55e38596b47ceb7823511c95697807767853b2be276e9739fdf1b731cfe04a4cd942d1519a07c5013b7f98a8944d1e
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 MssqlDbpoolWebAppExtension < DbpoolWebAppExtension
metadata CHANGED
@@ -1,43 +1,43 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trinidad_mssql_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
  - Brian Tatnall
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-12-11 00:00:00.000000000 Z
11
+ date: 2016-07-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: trinidad_dbpool
15
- version_requirements: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - '>='
18
- - !ruby/object:Gem::Version
19
- version: 0.7.0
20
14
  requirement: !ruby/object:Gem::Requirement
21
15
  requirements:
22
- - - '>='
16
+ - - ">="
23
17
  - !ruby/object:Gem::Version
24
- version: 0.7.0
18
+ version: 0.8.0
19
+ name: trinidad_dbpool
25
20
  prerelease: false
26
21
  type: :runtime
27
- - !ruby/object:Gem::Dependency
28
- name: jdbc-jtds
29
22
  version_requirements: !ruby/object:Gem::Requirement
30
23
  requirements:
31
- - - '>='
24
+ - - ">="
32
25
  - !ruby/object:Gem::Version
33
- version: 1.2.8
26
+ version: 0.8.0
27
+ - !ruby/object:Gem::Dependency
34
28
  requirement: !ruby/object:Gem::Requirement
35
29
  requirements:
36
- - - '>='
30
+ - - ">="
37
31
  - !ruby/object:Gem::Version
38
32
  version: 1.2.8
33
+ name: jdbc-jtds
39
34
  prerelease: false
40
35
  type: :runtime
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: 1.2.8
41
41
  description: Addon to support MS SQL Server database pools in Trinidad
42
42
  email: btatnall@gmail.com
43
43
  executables: []
@@ -47,11 +47,11 @@ extra_rdoc_files:
47
47
  - History.txt
48
48
  - LICENSE
49
49
  files:
50
- - lib/trinidad_mssql_dbpool_extension.rb
51
- - lib/trinidad_mssql_dbpool_extension/mssql_webapp_extension.rb
52
- - README.md
53
50
  - History.txt
54
51
  - LICENSE
52
+ - README.md
53
+ - lib/trinidad_mssql_dbpool_extension.rb
54
+ - lib/trinidad_mssql_dbpool_extension/mssql_webapp_extension.rb
55
55
  homepage: http://github.com/trinidad/trinidad_dbpool_extension
56
56
  licenses: []
57
57
  metadata: {}
@@ -61,17 +61,17 @@ require_paths:
61
61
  - lib
62
62
  required_ruby_version: !ruby/object:Gem::Requirement
63
63
  requirements:
64
- - - '>='
64
+ - - ">="
65
65
  - !ruby/object:Gem::Version
66
66
  version: '0'
67
67
  required_rubygems_version: !ruby/object:Gem::Requirement
68
68
  requirements:
69
- - - '>='
69
+ - - ">="
70
70
  - !ruby/object:Gem::Version
71
71
  version: '0'
72
72
  requirements: []
73
73
  rubyforge_project:
74
- rubygems_version: 2.1.9
74
+ rubygems_version: 2.4.8
75
75
  signing_key:
76
76
  specification_version: 4
77
77
  summary: Addon to support MS SQL Server database pools in Trinidad