sequel-collation 0.1.0 → 0.1.1
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 +7 -0
- data/lib/sequel/extensions/collation.rb +1 -1
- data/lib/sequel/extensions/collation/version.rb +1 -1
- metadata +14 -15
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 6c86c03b1f128bc9c0855c85a1c5bf5552e06a61
|
|
4
|
+
data.tar.gz: ae26f8eed282ff16921be78b98e4d81a6530eb7b
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: f68ec7e8a1e86c8471a7bf63bc151e4c10d51c184458b92e04913703df9b475744ba10ea67abd1df069ef5d9b073b17b2916c65fae3242758e1ed22e8c8a0d6b
|
|
7
|
+
data.tar.gz: ad7a3a6904ccf662e81ffcfe18e8fdb1cba01091905044339623c18217562c66ce291e2588c2052db3019aab5a70911ddfe7862fd922662987093eacaf293518
|
|
@@ -12,7 +12,7 @@ module Sequel
|
|
|
12
12
|
unless ADAPTER_MAP.has_key?(db_type)
|
|
13
13
|
# attempt to load the adapter file
|
|
14
14
|
begin
|
|
15
|
-
|
|
15
|
+
require("sequel/extensions/collation/adapters/#{db_type}")
|
|
16
16
|
rescue LoadError => e
|
|
17
17
|
if !@@suppress_warnings
|
|
18
18
|
warn "NOTE: Sequel::Collation does not support the database type '#{db_type}'"
|
metadata
CHANGED
|
@@ -1,28 +1,29 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sequel-collation
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
5
|
-
prerelease:
|
|
4
|
+
version: 0.1.1
|
|
6
5
|
platform: ruby
|
|
7
6
|
authors:
|
|
8
7
|
- Jeremy Stephens
|
|
9
8
|
autorequire:
|
|
10
9
|
bindir: bin
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date:
|
|
13
|
-
default_executable:
|
|
11
|
+
date: 2013-11-14 00:00:00.000000000 Z
|
|
14
12
|
dependencies:
|
|
15
13
|
- !ruby/object:Gem::Dependency
|
|
16
14
|
name: sequel
|
|
17
|
-
requirement:
|
|
18
|
-
none: false
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
19
16
|
requirements:
|
|
20
|
-
- -
|
|
17
|
+
- - '>='
|
|
21
18
|
- !ruby/object:Gem::Version
|
|
22
19
|
version: '0'
|
|
23
20
|
type: :runtime
|
|
24
21
|
prerelease: false
|
|
25
|
-
version_requirements:
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - '>='
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0'
|
|
26
27
|
description: Adds collation information to data returned by a Sequel database's schema
|
|
27
28
|
method
|
|
28
29
|
email:
|
|
@@ -47,30 +48,28 @@ files:
|
|
|
47
48
|
- test/helper.rb
|
|
48
49
|
- test/unit/test_h2.rb
|
|
49
50
|
- test/unit/test_mysql.rb
|
|
50
|
-
has_rdoc: true
|
|
51
51
|
homepage: http://github.com/coupler/sequel-collation
|
|
52
52
|
licenses: []
|
|
53
|
+
metadata: {}
|
|
53
54
|
post_install_message:
|
|
54
55
|
rdoc_options: []
|
|
55
56
|
require_paths:
|
|
56
57
|
- lib
|
|
57
58
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
58
|
-
none: false
|
|
59
59
|
requirements:
|
|
60
|
-
- -
|
|
60
|
+
- - '>='
|
|
61
61
|
- !ruby/object:Gem::Version
|
|
62
62
|
version: '0'
|
|
63
63
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
64
|
-
none: false
|
|
65
64
|
requirements:
|
|
66
|
-
- -
|
|
65
|
+
- - '>='
|
|
67
66
|
- !ruby/object:Gem::Version
|
|
68
67
|
version: '0'
|
|
69
68
|
requirements: []
|
|
70
69
|
rubyforge_project:
|
|
71
|
-
rubygems_version:
|
|
70
|
+
rubygems_version: 2.0.3
|
|
72
71
|
signing_key:
|
|
73
|
-
specification_version:
|
|
72
|
+
specification_version: 4
|
|
74
73
|
summary: Sequel extension to access collation information
|
|
75
74
|
test_files:
|
|
76
75
|
- test/config.yml
|