thingfish-datastore-filesystem 0.2.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/History.rdoc +5 -0
- data/Manifest.txt +0 -1
- data/README.rdoc +11 -8
- data/Rakefile +4 -69
- data/lib/thingfish/datastore/filesystem.rb +1 -1
- metadata +50 -96
- metadata.gz.sig +0 -0
- data/ChangeLog +0 -150
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 76ae192193ebf950a1569eb8dcd841cdf37625802b0165a45e4b2b0fbdfdc5b0
|
4
|
+
data.tar.gz: cfe510d1b832c5f997b0045253f4a5bc36bba8ab9efa58d0eb897588d27cf8b8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 309d4f912aacf2727595a541cb856d95c41e9f59c2008ec9c15a4d3d9d79f4b847526d87f063d764cbfde302487b61e28eea57158c15754141cc08bfd8cd4b0a
|
7
|
+
data.tar.gz: 8b192dd7168fafd66594bda5382268623caecfb5061eb8777db532993b4a1e80116fd89f82f6eaf4eb77399822cce12179f859af66855c76a82077a9c70e55ec
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/History.rdoc
CHANGED
@@ -1,3 +1,8 @@
|
|
1
|
+
== v0.2.2 [2020-04-07] Mahlon E. Smith <mahlon@martini.nu>
|
2
|
+
|
3
|
+
- Dependency updates, convert development environment to rake-deveiate.
|
4
|
+
|
5
|
+
|
1
6
|
== v0.2.1 [2017-01-16] Mahlon E. Smith <mahlon@martini.nu>
|
2
7
|
|
3
8
|
- Bugfix: Perform spooldir existence checks during initialization, not configuration.
|
data/Manifest.txt
CHANGED
data/README.rdoc
CHANGED
@@ -1,6 +1,9 @@
|
|
1
1
|
= Thingfish Filesystem Datastore
|
2
2
|
|
3
|
-
|
3
|
+
home:: https://hg.sr.ht/~ged/Thingfish-Datastore-Filesystem
|
4
|
+
code:: https://hg.sr.ht/~ged/Thingfish-Datastore-Filesystem/browse
|
5
|
+
github:: https://github.com/ged/Thingfish-Datastore-Filesystem
|
6
|
+
docs:: http://deveiate.org/code/Thingfish-Datastore-Filesystem
|
4
7
|
|
5
8
|
|
6
9
|
== Description
|
@@ -10,12 +13,6 @@ It provides persistent storage for uploaded data to a simple filesystem
|
|
10
13
|
path.
|
11
14
|
|
12
15
|
|
13
|
-
== Authors
|
14
|
-
|
15
|
-
* Michael Granger <ged@FaerieMUD.org>
|
16
|
-
* Mahlon E. Smith <mahlon@martini.nu>
|
17
|
-
|
18
|
-
|
19
16
|
== Installation
|
20
17
|
|
21
18
|
$ gem install thingfish-datastore-filesystem
|
@@ -104,9 +101,15 @@ to ensure the user account running the Thingfish handler also has
|
|
104
101
|
read/write access to these files.
|
105
102
|
|
106
103
|
|
104
|
+
== Authors
|
105
|
+
|
106
|
+
- Michael Granger <ged@FaerieMUD.org>
|
107
|
+
- Mahlon E. Smith <mahlon@martini.nu>
|
108
|
+
|
109
|
+
|
107
110
|
== License
|
108
111
|
|
109
|
-
Copyright (c) 2014-
|
112
|
+
Copyright (c) 2014-2020, Michael Granger and Mahlon E. Smith
|
110
113
|
All rights reserved.
|
111
114
|
|
112
115
|
Redistribution and use in source and binary forms, with or without
|
data/Rakefile
CHANGED
@@ -1,73 +1,8 @@
|
|
1
|
-
#!/usr/bin/env rake
|
1
|
+
#!/usr/bin/env ruby -S rake
|
2
2
|
|
3
|
-
|
4
|
-
require 'hoe'
|
5
|
-
rescue LoadError
|
6
|
-
abort "This Rakefile requires hoe (gem install hoe)"
|
7
|
-
end
|
8
|
-
|
9
|
-
GEMSPEC = 'thingfish-datastore-filesystem.gemspec'
|
10
|
-
|
11
|
-
|
12
|
-
Hoe.plugin :mercurial
|
13
|
-
Hoe.plugin :signing
|
14
|
-
Hoe.plugin :deveiate
|
15
|
-
Hoe.plugin :bundler
|
16
|
-
|
17
|
-
Hoe.plugins.delete :rubyforge
|
18
|
-
|
19
|
-
hoespec = Hoe.spec 'thingfish-datastore-filesystem' do |spec|
|
20
|
-
spec.readme_file = 'README.rdoc'
|
21
|
-
spec.history_file = 'History.rdoc'
|
22
|
-
spec.extra_rdoc_files = FileList[ '*.rdoc' ]
|
23
|
-
spec.license 'BSD-3-Clause'
|
24
|
-
|
25
|
-
if File.directory?( '.hg' )
|
26
|
-
spec.spec_extras[:rdoc_options] = ['-f', 'fivefish', '-t', 'Thingfish-Datastore-FileSystem']
|
27
|
-
end
|
28
|
-
|
29
|
-
spec.developer 'Michael Granger', 'ged@FaerieMUD.org'
|
30
|
-
spec.developer 'Mahlon E. Smith', 'mahlon@martini.nu'
|
31
|
-
|
32
|
-
spec.dependency 'thingfish', '~> 0.6'
|
33
|
-
spec.dependency 'configurability', '~> 3.1'
|
34
|
-
|
35
|
-
spec.dependency 'hoe-deveiate', '~> 0.8', :development
|
36
|
-
spec.dependency 'simplecov', '~> 0.12', :developer
|
37
|
-
|
38
|
-
spec.require_ruby_version( '>=2.0.0' )
|
39
|
-
spec.hg_sign_tags = true if spec.respond_to?( :hg_sign_tags= )
|
3
|
+
require 'rake/deveiate'
|
40
4
|
|
41
|
-
|
5
|
+
Rake::DevEiate.setup( 'thingfish-datastore-filesystem' ) do |project|
|
6
|
+
project.publish_to = 'deveiate:/usr/local/www/public/code'
|
42
7
|
end
|
43
8
|
|
44
|
-
|
45
|
-
ENV['VERSION'] ||= hoespec.spec.version.to_s
|
46
|
-
|
47
|
-
# Run the tests before checking in
|
48
|
-
task 'hg:precheckin' => [ :check_history, :check_manifest, :spec ]
|
49
|
-
|
50
|
-
# Rebuild the ChangeLog immediately before release
|
51
|
-
task :prerelease => 'ChangeLog'
|
52
|
-
CLOBBER.include( 'ChangeLog' )
|
53
|
-
|
54
|
-
desc "Build a coverage report"
|
55
|
-
task :coverage do
|
56
|
-
ENV["COVERAGE"] = 'yes'
|
57
|
-
Rake::Task[:spec].invoke
|
58
|
-
end
|
59
|
-
|
60
|
-
|
61
|
-
task :gemspec => GEMSPEC
|
62
|
-
file GEMSPEC => __FILE__ do |task|
|
63
|
-
spec = $hoespec.spec
|
64
|
-
spec.files.delete( '.gemtest' )
|
65
|
-
spec.signing_key = nil
|
66
|
-
spec.version = "#{spec.version}.pre#{Time.now.strftime("%Y%m%d%H%M%S")}"
|
67
|
-
File.open( task.name, 'w' ) do |fh|
|
68
|
-
fh.write( spec.to_ruby )
|
69
|
-
end
|
70
|
-
end
|
71
|
-
|
72
|
-
task :default => :gemspec
|
73
|
-
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: thingfish-datastore-filesystem
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Granger
|
@@ -11,98 +11,88 @@ bindir: bin
|
|
11
11
|
cert_chain:
|
12
12
|
- |
|
13
13
|
-----BEGIN CERTIFICATE-----
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
14
|
+
MIIENDCCApygAwIBAgIBATANBgkqhkiG9w0BAQsFADAiMSAwHgYDVQQDDBdnZWQv
|
15
|
+
REM9RmFlcmllTVVEL0RDPW9yZzAeFw0xOTEwMDkwMDM2NTdaFw0yMDEwMDgwMDM2
|
16
|
+
NTdaMCIxIDAeBgNVBAMMF2dlZC9EQz1GYWVyaWVNVUQvREM9b3JnMIIBojANBgkq
|
17
|
+
hkiG9w0BAQEFAAOCAY8AMIIBigKCAYEAvyVhkRzvlEs0fe7145BYLfN6njX9ih5H
|
18
|
+
L60U0p0euIurpv84op9CNKF9tx+1WKwyQvQP7qFGuZxkSUuWcP/sFhDXL1lWUuIl
|
19
|
+
M4uHbGCRmOshDrF4dgnBeOvkHr1fIhPlJm5FO+Vew8tSQmlDsosxLUx+VB7DrVFO
|
20
|
+
5PU2AEbf04GGSrmqADGWXeaslaoRdb1fu/0M5qfPTRn5V39sWD9umuDAF9qqil/x
|
21
|
+
Sl6phTvgBrG8GExHbNZpLARd3xrBYLEFsX7RvBn2UPfgsrtvpdXjsHGfpT3IPN+B
|
22
|
+
vQ66lts4alKC69TE5cuKasWBm+16A4aEe3XdZBRNmtOu/g81gvwA7fkJHKllJuaI
|
23
|
+
dXzdHqq+zbGZVSQ7pRYHYomD0IiDe1DbIouFnPWmagaBnGHwXkDT2bKKP+s2v21m
|
24
|
+
ozilJg4aar2okb/RA6VS87o+d7g6LpDDMMQjH4G9OPnJENLdhu8KnPw/ivSVvQw7
|
25
|
+
N2I4L/ZOIe2DIVuYH7aLHfjZDQv/mNgpAgMBAAGjdTBzMAkGA1UdEwQCMAAwCwYD
|
26
|
+
VR0PBAQDAgSwMB0GA1UdDgQWBBRyjf55EbrHagiRLqt5YAd3yb8k4DAcBgNVHREE
|
27
|
+
FTATgRFnZWRARmFlcmllTVVELm9yZzAcBgNVHRIEFTATgRFnZWRARmFlcmllTVVE
|
28
|
+
Lm9yZzANBgkqhkiG9w0BAQsFAAOCAYEAFqsr6o0SvQRgjQVmhbQvExRnCMCoW1yb
|
29
|
+
FJiN7A5RA2Iy2E61OG1Ul5nGmaDmx/PNB/6JIbIV3B9Uq8aTZx4uOjK7r8vMl1/t
|
30
|
+
ZfY7r6HejJfXlcO2m6JDMbpdyEVv916LncBkzZRz6vnnNCx+31f15FKddxujpAFd
|
31
|
+
qpn3JRQY+oj7ZkoccL/IUiDpxQWeS3oOoz9qr2kVTp8R50InZimt79FqCl/1m66W
|
32
|
+
kdOuf+wM3DDx7Rt4IVNHrhGlyfMr7xjKW1Q3gll+pMN1DT6Ajx/t3JDSEg7BnnEW
|
33
|
+
r7AciSO6J4ApUdqyG+coLFlGdtgFTgRHv7ihbQtDI7Z/LV7A4Spn1j2PK3j0Omri
|
34
|
+
kSl1hPVigRytfgdVGiLXzvkkrkgj9EknCaj5UHbac7XvVBrljXj9hsnnqTANaKsg
|
35
|
+
jBZSA+N+xUTgUWpXjjwsLZjzJkhWATJWq+krNXcqpwXo6HsjmdUxoFMt63RBb+sI
|
36
|
+
XrxOxp8o0uOkU7FdLSGsyqJ2LzsR4obN
|
33
37
|
-----END CERTIFICATE-----
|
34
|
-
date:
|
38
|
+
date: 2020-04-07 00:00:00.000000000 Z
|
35
39
|
dependencies:
|
36
|
-
- !ruby/object:Gem::Dependency
|
37
|
-
name: thingfish
|
38
|
-
requirement: !ruby/object:Gem::Requirement
|
39
|
-
requirements:
|
40
|
-
- - "~>"
|
41
|
-
- !ruby/object:Gem::Version
|
42
|
-
version: '0.6'
|
43
|
-
type: :runtime
|
44
|
-
prerelease: false
|
45
|
-
version_requirements: !ruby/object:Gem::Requirement
|
46
|
-
requirements:
|
47
|
-
- - "~>"
|
48
|
-
- !ruby/object:Gem::Version
|
49
|
-
version: '0.6'
|
50
40
|
- !ruby/object:Gem::Dependency
|
51
41
|
name: configurability
|
52
42
|
requirement: !ruby/object:Gem::Requirement
|
53
43
|
requirements:
|
54
44
|
- - "~>"
|
55
45
|
- !ruby/object:Gem::Version
|
56
|
-
version: '
|
46
|
+
version: '4.1'
|
57
47
|
type: :runtime
|
58
48
|
prerelease: false
|
59
49
|
version_requirements: !ruby/object:Gem::Requirement
|
60
50
|
requirements:
|
61
51
|
- - "~>"
|
62
52
|
- !ruby/object:Gem::Version
|
63
|
-
version: '
|
53
|
+
version: '4.1'
|
64
54
|
- !ruby/object:Gem::Dependency
|
65
|
-
name:
|
55
|
+
name: thingfish
|
66
56
|
requirement: !ruby/object:Gem::Requirement
|
67
57
|
requirements:
|
68
58
|
- - "~>"
|
69
59
|
- !ruby/object:Gem::Version
|
70
|
-
version: '
|
71
|
-
type: :
|
60
|
+
version: '0.7'
|
61
|
+
type: :runtime
|
72
62
|
prerelease: false
|
73
63
|
version_requirements: !ruby/object:Gem::Requirement
|
74
64
|
requirements:
|
75
65
|
- - "~>"
|
76
66
|
- !ruby/object:Gem::Version
|
77
|
-
version: '
|
67
|
+
version: '0.7'
|
78
68
|
- !ruby/object:Gem::Dependency
|
79
|
-
name:
|
69
|
+
name: fakefs
|
80
70
|
requirement: !ruby/object:Gem::Requirement
|
81
71
|
requirements:
|
82
72
|
- - "~>"
|
83
73
|
- !ruby/object:Gem::Version
|
84
|
-
version: '
|
74
|
+
version: '1.2'
|
85
75
|
type: :development
|
86
76
|
prerelease: false
|
87
77
|
version_requirements: !ruby/object:Gem::Requirement
|
88
78
|
requirements:
|
89
79
|
- - "~>"
|
90
80
|
- !ruby/object:Gem::Version
|
91
|
-
version: '
|
81
|
+
version: '1.2'
|
92
82
|
- !ruby/object:Gem::Dependency
|
93
|
-
name:
|
83
|
+
name: rspec
|
94
84
|
requirement: !ruby/object:Gem::Requirement
|
95
85
|
requirements:
|
96
86
|
- - "~>"
|
97
87
|
- !ruby/object:Gem::Version
|
98
|
-
version: '
|
88
|
+
version: '3.8'
|
99
89
|
type: :development
|
100
90
|
prerelease: false
|
101
91
|
version_requirements: !ruby/object:Gem::Requirement
|
102
92
|
requirements:
|
103
93
|
- - "~>"
|
104
94
|
- !ruby/object:Gem::Version
|
105
|
-
version: '
|
95
|
+
version: '3.8'
|
106
96
|
- !ruby/object:Gem::Dependency
|
107
97
|
name: simplecov
|
108
98
|
requirement: !ruby/object:Gem::Requirement
|
@@ -117,52 +107,17 @@ dependencies:
|
|
117
107
|
- - "~>"
|
118
108
|
- !ruby/object:Gem::Version
|
119
109
|
version: '0.12'
|
120
|
-
|
121
|
-
|
122
|
-
requirement: !ruby/object:Gem::Requirement
|
123
|
-
requirements:
|
124
|
-
- - "~>"
|
125
|
-
- !ruby/object:Gem::Version
|
126
|
-
version: '4.0'
|
127
|
-
type: :development
|
128
|
-
prerelease: false
|
129
|
-
version_requirements: !ruby/object:Gem::Requirement
|
130
|
-
requirements:
|
131
|
-
- - "~>"
|
132
|
-
- !ruby/object:Gem::Version
|
133
|
-
version: '4.0'
|
134
|
-
- !ruby/object:Gem::Dependency
|
135
|
-
name: hoe
|
136
|
-
requirement: !ruby/object:Gem::Requirement
|
137
|
-
requirements:
|
138
|
-
- - "~>"
|
139
|
-
- !ruby/object:Gem::Version
|
140
|
-
version: '3.16'
|
141
|
-
type: :development
|
142
|
-
prerelease: false
|
143
|
-
version_requirements: !ruby/object:Gem::Requirement
|
144
|
-
requirements:
|
145
|
-
- - "~>"
|
146
|
-
- !ruby/object:Gem::Version
|
147
|
-
version: '3.16'
|
148
|
-
description: |-
|
149
|
-
This is a data storage plugin for the Thingfish digital asset manager.
|
150
|
-
It provides persistent storage for uploaded data to a simple filesystem
|
151
|
-
path.
|
110
|
+
description: This is a data storage plugin for the Thingfish digital asset manager.
|
111
|
+
It provides persistent storage for uploaded data to a simple filesystem path.
|
152
112
|
email:
|
153
113
|
- ged@FaerieMUD.org
|
154
114
|
- mahlon@martini.nu
|
155
115
|
executables: []
|
156
116
|
extensions: []
|
157
|
-
extra_rdoc_files:
|
158
|
-
- History.rdoc
|
159
|
-
- LICENSE.rdoc
|
160
|
-
- Manifest.txt
|
161
|
-
- README.rdoc
|
117
|
+
extra_rdoc_files: []
|
162
118
|
files:
|
163
119
|
- ".document"
|
164
120
|
- ".simplecov"
|
165
|
-
- ChangeLog
|
166
121
|
- History.rdoc
|
167
122
|
- LICENSE.rdoc
|
168
123
|
- Manifest.txt
|
@@ -171,32 +126,31 @@ files:
|
|
171
126
|
- lib/thingfish/datastore/filesystem.rb
|
172
127
|
- spec/helpers.rb
|
173
128
|
- spec/thingfish/datastore/filesystem_spec.rb
|
174
|
-
homepage:
|
129
|
+
homepage: https://hg.sr.ht/~ged/Thingfish-Datastore-Filesystem
|
175
130
|
licenses:
|
176
131
|
- BSD-3-Clause
|
177
|
-
metadata:
|
132
|
+
metadata:
|
133
|
+
homepage_uri: https://hg.sr.ht/~ged/Thingfish-Datastore-Filesystem
|
134
|
+
documentation_uri: http://deveiate.org/code/Thingfish-Datastore-Filesystem
|
135
|
+
source_uri: https://hg.sr.ht/~ged/Thingfish-Datastore-Filesystem/browse
|
136
|
+
bug_tracker_uri: https://todo.sr.ht/~ged/Thingfish-Datastore-Filesystem/browse
|
178
137
|
post_install_message:
|
179
|
-
rdoc_options:
|
180
|
-
- "-f"
|
181
|
-
- fivefish
|
182
|
-
- "-t"
|
183
|
-
- Thingfish-Datastore-FileSystem
|
138
|
+
rdoc_options: []
|
184
139
|
require_paths:
|
185
140
|
- lib
|
186
141
|
required_ruby_version: !ruby/object:Gem::Requirement
|
187
142
|
requirements:
|
188
143
|
- - ">="
|
189
144
|
- !ruby/object:Gem::Version
|
190
|
-
version:
|
145
|
+
version: '0'
|
191
146
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
192
147
|
requirements:
|
193
148
|
- - ">="
|
194
149
|
- !ruby/object:Gem::Version
|
195
150
|
version: '0'
|
196
151
|
requirements: []
|
197
|
-
|
198
|
-
rubygems_version: 2.5.1
|
152
|
+
rubygems_version: 3.1.2
|
199
153
|
signing_key:
|
200
154
|
specification_version: 4
|
201
|
-
summary: This is a data storage plugin for the Thingfish digital asset manager
|
155
|
+
summary: This is a data storage plugin for the Thingfish digital asset manager.
|
202
156
|
test_files: []
|
metadata.gz.sig
CHANGED
Binary file
|
data/ChangeLog
DELETED
@@ -1,150 +0,0 @@
|
|
1
|
-
2017-01-19 Mahlon E. Smith <mahlon@martini.nu>
|
2
|
-
|
3
|
-
* .gems, lib/thingfish/datastore/filesystem.rb,
|
4
|
-
spec/thingfish/datastore/filesystem_spec.rb:
|
5
|
-
Move the spooldir check to the initializer.
|
6
|
-
[6fd20473c7d7] [tip]
|
7
|
-
|
8
|
-
2017-01-16 Michael Granger <ged@FaerieMUD.org>
|
9
|
-
|
10
|
-
* README.rdoc:
|
11
|
-
Fix spacing in the README
|
12
|
-
[1fba40d1a49b]
|
13
|
-
|
14
|
-
* README.rdoc:
|
15
|
-
Update the README.
|
16
|
-
[02a27216ce62]
|
17
|
-
|
18
|
-
* .hgignore:
|
19
|
-
Ignore generated pkg directory
|
20
|
-
[246fab8f06ff]
|
21
|
-
|
22
|
-
* .hgtags:
|
23
|
-
Added tag v0.2.0 for changeset 325c13364443
|
24
|
-
[011822c261df]
|
25
|
-
|
26
|
-
* .hgsigs:
|
27
|
-
Added signature for changeset cb4954dd5c6e
|
28
|
-
[325c13364443] [v0.2.0]
|
29
|
-
|
30
|
-
* History.rdoc, lib/thingfish/datastore/filesystem.rb:
|
31
|
-
Bump minor version, update history.
|
32
|
-
[cb4954dd5c6e]
|
33
|
-
|
34
|
-
* lib/thingfish/datastore/filesystem.rb:
|
35
|
-
Convert to Configurabilty 3-style config
|
36
|
-
[a64d87daeece]
|
37
|
-
|
38
|
-
* Rakefile:
|
39
|
-
Update dependencies.
|
40
|
-
[48124ad82865]
|
41
|
-
|
42
|
-
* .hgignore:
|
43
|
-
Ignore generated docs directory
|
44
|
-
[b76614affc6f]
|
45
|
-
|
46
|
-
2016-11-14 Michael Granger <ged@FaerieMUD.org>
|
47
|
-
|
48
|
-
* .hgtags:
|
49
|
-
Added tag v0.1.1 for changeset 9733fb4c338d
|
50
|
-
[16771fd02dfc]
|
51
|
-
|
52
|
-
* .hgsigs:
|
53
|
-
Added signature for changeset 3fe311d4cdc5
|
54
|
-
[9733fb4c338d] [v0.1.1]
|
55
|
-
|
56
|
-
* History.rdoc, lib/thingfish/datastore/filesystem.rb:
|
57
|
-
Bump the patch version, update history.
|
58
|
-
[3fe311d4cdc5]
|
59
|
-
|
60
|
-
* Rakefile:
|
61
|
-
Allow publication.
|
62
|
-
[8b2ec5a3d298]
|
63
|
-
|
64
|
-
* .hgtags:
|
65
|
-
Added tag v0.1.0 for changeset 7e154c22db5f
|
66
|
-
[1de7216e2d8d]
|
67
|
-
|
68
|
-
* .hgsigs:
|
69
|
-
Added signature for changeset 5e80d2529c45
|
70
|
-
[7e154c22db5f] [v0.1.0]
|
71
|
-
|
72
|
-
* History.rdoc, lib/thingfish/datastore/filesystem.rb:
|
73
|
-
Set the version, update History.
|
74
|
-
[5e80d2529c45]
|
75
|
-
|
76
|
-
* LICENSE.rdoc, Rakefile:
|
77
|
-
Update copyright, license in the gemspec.
|
78
|
-
[03aa8e60713c]
|
79
|
-
|
80
|
-
2016-11-03 Michael Granger <ged@FaerieMUD.org>
|
81
|
-
|
82
|
-
* .hgtags:
|
83
|
-
Added tag v0.0.1.pre20161103180658 for changeset 568f7e6f8496
|
84
|
-
[921b2527889e]
|
85
|
-
|
86
|
-
* Gemfile, thingfish-datastore-filesystem.gemspec:
|
87
|
-
Adding generated gemspec/Gemfile
|
88
|
-
[568f7e6f8496] [v0.0.1.pre20161103180658]
|
89
|
-
|
90
|
-
* .ruby-gemset, .ruby-version, .rvmrc, README.rdoc:
|
91
|
-
Convert to generic version-manager files, update copyright.
|
92
|
-
[cc1729ca617a]
|
93
|
-
|
94
|
-
2016-07-07 Michael Granger <ged@FaerieMUD.org>
|
95
|
-
|
96
|
-
* .hgignore, .rvmrc, ChangeLog, Manifest.txt,
|
97
|
-
lib/thingfish/datastore/filesystem.rb,
|
98
|
-
spec/thingfish/datastore/filesystem_spec.rb:
|
99
|
-
Fix spooling of in-memory uploads.
|
100
|
-
[d5b8afa4a502]
|
101
|
-
|
102
|
-
2015-11-02 Mahlon E. Smith <mahlon@martini.nu>
|
103
|
-
|
104
|
-
* LICENSE.rdoc, Manifest.txt, README.rdoc, Rakefile,
|
105
|
-
lib/thingfish/datastore/filesystem.rb:
|
106
|
-
Fix LICENSE file, ensure mode set on new directory creations.
|
107
|
-
[fa2c52af871c]
|
108
|
-
|
109
|
-
2015-04-01 Mahlon E. Smith <mahlon@martini.nu>
|
110
|
-
|
111
|
-
* .gems, .rvm.gems, .rvmrc:
|
112
|
-
Bump development default ruby version, rename rvm gems file.
|
113
|
-
[3ed2e70a625b]
|
114
|
-
|
115
|
-
2015-01-28 Michael Granger <ged@FaerieMUD.org>
|
116
|
-
|
117
|
-
* Rakefile, spec/thingfish/datastore/filesystem_spec.rb:
|
118
|
-
Convert specs to use the filesystem shared behavior.
|
119
|
-
[f21f6149df51]
|
120
|
-
|
121
|
-
2014-12-22 Michael Granger <ged@FaerieMUD.org>
|
122
|
-
|
123
|
-
* .rvm.gems, ChangeLog, Rakefile,
|
124
|
-
lib/thingfish/datastore/filesystem.rb, spec/helpers.rb,
|
125
|
-
spec/thingfish/datastore/filesystem_spec.rb:
|
126
|
-
Finished up the initial implementation.
|
127
|
-
[23167299ded2]
|
128
|
-
|
129
|
-
2014-12-10 Mahlon E. Smith <mahlon@martini.nu>
|
130
|
-
|
131
|
-
* README.rdoc:
|
132
|
-
First pass at a useful README.
|
133
|
-
[d5f1b3a85784]
|
134
|
-
|
135
|
-
2014-12-03 Michael Granger <ged@FaerieMUD.org>
|
136
|
-
|
137
|
-
* .rvm.gems, .rvmrc, ChangeLog, Manifest.txt, Rakefile,
|
138
|
-
lib/thingfish/datastore/filesystem.rb, spec/helpers.rb,
|
139
|
-
spec/thingfish/datastore/filesystem_spec.rb:
|
140
|
-
Checkpoint of Commit! work
|
141
|
-
[c3c1d5b25633]
|
142
|
-
|
143
|
-
2014-12-01 Michael Granger <ged@FaerieMUD.org>
|
144
|
-
|
145
|
-
* .document, .gitignore, .hgignore, .pryrc, .rvm.gems, .rvmrc,
|
146
|
-
.simplecov, History.rdoc, LICENSE.rdoc, README.rdoc, Rakefile,
|
147
|
-
lib/thingfish/datastore/filesystem.rb, spec/helpers.rb,
|
148
|
-
spec/thingfish/datastore/filesystem_spec.rb:
|
149
|
-
Started work
|
150
|
-
[d1f307e087fd]
|