thingfish-metastore-pg 0.1.0.pre20160627113019 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/History.md +6 -1
- data/README.md +23 -9
- data/Rakefile +4 -4
- data/lib/thingfish/metastore/pg.rb +2 -2
- metadata +17 -16
- metadata.gz.sig +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2994038b45a47267fabd1856d1a421c8f0bc79d8
|
4
|
+
data.tar.gz: 0763d5864e5f4dca9bdae8f6976b83d76e2aecf5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c358ea5b1ba648219b3d6ce521f8d8f6dee053e161dd385c379c7532f0ba33b2f581f040e8e7be0fb77aff8d9f963797a56e0542f3026c41cf99439aa35cead8
|
7
|
+
data.tar.gz: e4a310fadb48052b82b7ce24f02e3650a3bb73e463de81895d4435d15b02b2f552fc2fd17b94fab3a7461d95bf6740cb259ec2610dc6d6f9e6e813302b2d9ca2
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/History.md
CHANGED
data/README.md
CHANGED
@@ -15,7 +15,8 @@ docs
|
|
15
15
|
|
16
16
|
## Description
|
17
17
|
|
18
|
-
This is a metadata storage plugin for the Thingfish digital asset manager. It
|
18
|
+
This is a metadata storage plugin for the Thingfish digital asset manager. It
|
19
|
+
provides persistent storage for uploaded data to a PostgreSQL table.
|
19
20
|
|
20
21
|
|
21
22
|
## Authors
|
@@ -31,7 +32,9 @@ This is a metadata storage plugin for the Thingfish digital asset manager. It pr
|
|
31
32
|
|
32
33
|
## Usage
|
33
34
|
|
34
|
-
As with Thingfish itself, this plugin uses
|
35
|
+
As with Thingfish itself, this plugin uses
|
36
|
+
Configurability[https://rubygems.org/gems/configurability] to modify default
|
37
|
+
behaviors.
|
35
38
|
|
36
39
|
Here's an example configuration file that enables this plugin.
|
37
40
|
|
@@ -43,7 +46,8 @@ Here's an example configuration file that enables this plugin.
|
|
43
46
|
uri: postgres://thingfish:password@db.example.com/database
|
44
47
|
|
45
48
|
|
46
|
-
When Thingfish starts, it will install the necessary database schema
|
49
|
+
When Thingfish starts, it will install the necessary database schema
|
50
|
+
automatically.
|
47
51
|
|
48
52
|
|
49
53
|
## License
|
@@ -52,7 +56,8 @@ Copyright (c) 2014-2016, Michael Granger and Mahlon E. Smith.
|
|
52
56
|
|
53
57
|
All rights reserved.
|
54
58
|
|
55
|
-
Redistribution and use in source and binary forms, with or without
|
59
|
+
Redistribution and use in source and binary forms, with or without
|
60
|
+
modification, are permitted provided that the following conditions are met:
|
56
61
|
|
57
62
|
* Redistributions of source code must retain the above copyright notice, this
|
58
63
|
list of conditions and the following disclaimer.
|
@@ -61,9 +66,18 @@ Redistribution and use in source and binary forms, with or without modification,
|
|
61
66
|
list of conditions and the following disclaimer in the documentation and/or
|
62
67
|
other materials provided with the distribution.
|
63
68
|
|
64
|
-
* Neither the name of the authors, nor the names of its contributors may be
|
65
|
-
endorse or promote products derived from this software without
|
66
|
-
written permission.
|
67
|
-
|
68
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
69
|
+
* Neither the name of the authors, nor the names of its contributors may be
|
70
|
+
used to endorse or promote products derived from this software without
|
71
|
+
specific prior written permission.
|
72
|
+
|
73
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
74
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
75
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
76
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
77
|
+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
78
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
79
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
80
|
+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
81
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
82
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
69
83
|
|
data/Rakefile
CHANGED
@@ -15,7 +15,6 @@ Hoe.plugin :deveiate
|
|
15
15
|
Hoe.plugin :bundler
|
16
16
|
|
17
17
|
Hoe.plugins.delete :rubyforge
|
18
|
-
Hoe.plugins.delete :gemcutter
|
19
18
|
|
20
19
|
hoespec = Hoe.spec 'thingfish-metastore-pg' do |spec|
|
21
20
|
spec.readme_file = 'README.md'
|
@@ -33,12 +32,13 @@ hoespec = Hoe.spec 'thingfish-metastore-pg' do |spec|
|
|
33
32
|
spec.developer 'Mahlon E. Smith', 'mahlon@martini.nu'
|
34
33
|
|
35
34
|
spec.dependency 'thingfish', '~> 0.5'
|
36
|
-
spec.dependency 'loggability', '~> 0.
|
35
|
+
spec.dependency 'loggability', '~> 0.11'
|
37
36
|
spec.dependency 'configurability', '~> 2.2'
|
38
37
|
spec.dependency 'sequel', '~> 4.35'
|
39
|
-
spec.dependency 'pg', '~> 0.
|
38
|
+
spec.dependency 'pg', '~> 0.19'
|
40
39
|
|
41
|
-
spec.dependency '
|
40
|
+
spec.dependency 'hoe-deveiate', '~> 0.8', :development
|
41
|
+
spec.dependency 'simplecov', '~> 0.12', :development
|
42
42
|
|
43
43
|
spec.require_ruby_version( '>=2.3.0' )
|
44
44
|
spec.hg_sign_tags = true if spec.respond_to?( :hg_sign_tags= )
|
@@ -24,10 +24,10 @@ class Thingfish::Metastore::PG < Thingfish::Metastore
|
|
24
24
|
|
25
25
|
|
26
26
|
# Package version
|
27
|
-
VERSION = '0.
|
27
|
+
VERSION = '0.1.1'
|
28
28
|
|
29
29
|
# Version control revision
|
30
|
-
REVISION = %q$Revision:
|
30
|
+
REVISION = %q$Revision: ad5b3fefdce7 $
|
31
31
|
|
32
32
|
# The data directory that contains migration files.
|
33
33
|
#
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: thingfish-metastore-pg
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Granger
|
@@ -36,7 +36,7 @@ cert_chain:
|
|
36
36
|
w8aNA5re5+Rt/Vvjxj5AcEnZnZiz5x959NaddQocX32Z1unHw44pzRNUur1GInfW
|
37
37
|
p4vpx2kUSFSAGjtCbDGTNV2AH8w9OU4xEmNz8c5lyoA=
|
38
38
|
-----END CERTIFICATE-----
|
39
|
-
date: 2016-
|
39
|
+
date: 2016-11-14 00:00:00.000000000 Z
|
40
40
|
dependencies:
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: thingfish
|
@@ -58,14 +58,14 @@ dependencies:
|
|
58
58
|
requirements:
|
59
59
|
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: '0.
|
61
|
+
version: '0.11'
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: '0.
|
68
|
+
version: '0.11'
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: configurability
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -100,14 +100,14 @@ dependencies:
|
|
100
100
|
requirements:
|
101
101
|
- - "~>"
|
102
102
|
- !ruby/object:Gem::Version
|
103
|
-
version: '0.
|
103
|
+
version: '0.19'
|
104
104
|
type: :runtime
|
105
105
|
prerelease: false
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
107
107
|
requirements:
|
108
108
|
- - "~>"
|
109
109
|
- !ruby/object:Gem::Version
|
110
|
-
version: '0.
|
110
|
+
version: '0.19'
|
111
111
|
- !ruby/object:Gem::Dependency
|
112
112
|
name: hoe-mercurial
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
@@ -151,33 +151,33 @@ dependencies:
|
|
151
151
|
- !ruby/object:Gem::Version
|
152
152
|
version: '0.2'
|
153
153
|
- !ruby/object:Gem::Dependency
|
154
|
-
name:
|
154
|
+
name: simplecov
|
155
155
|
requirement: !ruby/object:Gem::Requirement
|
156
156
|
requirements:
|
157
157
|
- - "~>"
|
158
158
|
- !ruby/object:Gem::Version
|
159
|
-
version: '
|
159
|
+
version: '0.12'
|
160
160
|
type: :development
|
161
161
|
prerelease: false
|
162
162
|
version_requirements: !ruby/object:Gem::Requirement
|
163
163
|
requirements:
|
164
164
|
- - "~>"
|
165
165
|
- !ruby/object:Gem::Version
|
166
|
-
version: '
|
166
|
+
version: '0.12'
|
167
167
|
- !ruby/object:Gem::Dependency
|
168
|
-
name:
|
168
|
+
name: rdoc
|
169
169
|
requirement: !ruby/object:Gem::Requirement
|
170
170
|
requirements:
|
171
171
|
- - "~>"
|
172
172
|
- !ruby/object:Gem::Version
|
173
|
-
version: '
|
173
|
+
version: '4.0'
|
174
174
|
type: :development
|
175
175
|
prerelease: false
|
176
176
|
version_requirements: !ruby/object:Gem::Requirement
|
177
177
|
requirements:
|
178
178
|
- - "~>"
|
179
179
|
- !ruby/object:Gem::Version
|
180
|
-
version: '
|
180
|
+
version: '4.0'
|
181
181
|
- !ruby/object:Gem::Dependency
|
182
182
|
name: hoe
|
183
183
|
requirement: !ruby/object:Gem::Requirement
|
@@ -192,8 +192,9 @@ dependencies:
|
|
192
192
|
- - "~>"
|
193
193
|
- !ruby/object:Gem::Version
|
194
194
|
version: '3.15'
|
195
|
-
description:
|
196
|
-
|
195
|
+
description: |-
|
196
|
+
This is a metadata storage plugin for the Thingfish digital asset manager. It
|
197
|
+
provides persistent storage for uploaded data to a PostgreSQL table.
|
197
198
|
email:
|
198
199
|
- ged@FaerieMUD.org
|
199
200
|
- mahlon@martini.nu
|
@@ -235,9 +236,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
235
236
|
version: 2.3.0
|
236
237
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
237
238
|
requirements:
|
238
|
-
- - "
|
239
|
+
- - ">="
|
239
240
|
- !ruby/object:Gem::Version
|
240
|
-
version:
|
241
|
+
version: '0'
|
241
242
|
requirements: []
|
242
243
|
rubyforge_project:
|
243
244
|
rubygems_version: 2.5.1
|
metadata.gz.sig
CHANGED
@@ -1 +1,2 @@
|
|
1
|
-
|
1
|
+
�w>��, �с�C�3����5k�;��;��"¨��UoW�X~;���E�狗�Ou&�N0����.J��%�fg�7G��^ǰ$Τ�J��%�=6'κ�����yҬ7���)�����q�嫢(J��%�!���u��T�%O��$ck��uJ ��i"�ʠ;7���y��~p�q��"��B�����Ea��j����$���Ë8@v�w�|Z����4nj
|
2
|
+
b��-C���?T)��=M�x�f��i�"N�����n��Gk�`����.\��X�V�=�2;�I�����˭�2g@��z~�+�ᦖ� u~Il�S)f��&�;��M��?8$\� �K����v��+�GHRXXV��K���Y�����v�"T��
|