trinidad_sqlite_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: c2c714e520d0178b0691bb3046a8fa7014e1935a
4
- data.tar.gz: fc489f3e6435bf25455254b8da044dfcdacc77f1
3
+ metadata.gz: 19167c43bb05df16f2feaa50d8637ba2072ab507
4
+ data.tar.gz: 3951e15654191b59049f4aecfd1cf41e68629079
5
5
  SHA512:
6
- metadata.gz: 97b2fc402c9f4e9004601e409f67561ddffb8244ad5333fad23d860b7b986f0d0f81cc42eee194e1002f7333ab0ba1d6ff28474ab6da1140d29d2817f1542e35
7
- data.tar.gz: cd63b8a1fee235bfe92a7614ab7c0a248607aa8faf3365e3dd6c5111bb3b4a86173c527e833741016cd83e213f00f04dd4f4d0cd36e3b4f8e1b264cab49b23fe
6
+ metadata.gz: 974093a0f9cb1742aeb071139da17ce9fdafdb5ecd44a9cd79310e29d4bb63bb02eac71ad47068126823e25a98786d9924f7aa785ec5e316aa08cde7953c4e31
7
+ data.tar.gz: 3f8cba412cc58f8849aae04248a663b37ad50142589dbdaf6b2a6fb7f61758ed83f2b45c0fccd27cc69f1c530ca9e249b9e7cb703409e2c0a05eab3f6326673e
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 SqliteDbpoolWebAppExtension < DbpoolWebAppExtension
metadata CHANGED
@@ -1,43 +1,43 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trinidad_sqlite_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
  - Karol Bucek
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-sqlite3
29
22
  version_requirements: !ruby/object:Gem::Requirement
30
23
  requirements:
31
- - - '>='
24
+ - - ">="
32
25
  - !ruby/object:Gem::Version
33
- version: 3.7.2
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: 3.7.2
33
+ name: jdbc-sqlite3
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: 3.7.2
41
41
  description: Addon to support Sqlite database pools in Trinidad
42
42
  email: self@kares.org
43
43
  executables: []
@@ -47,11 +47,11 @@ extra_rdoc_files:
47
47
  - History.txt
48
48
  - LICENSE
49
49
  files:
50
- - lib/trinidad_sqlite_dbpool_extension.rb
51
- - lib/trinidad_sqlite_dbpool_extension/sqlite_webapp_extension.rb
52
- - README.md
53
50
  - History.txt
54
51
  - LICENSE
52
+ - README.md
53
+ - lib/trinidad_sqlite_dbpool_extension.rb
54
+ - lib/trinidad_sqlite_dbpool_extension/sqlite_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 Sqlite database pools in Trinidad