sixarm_ruby_blob 1.0.3 → 2.0.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 +5 -5
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/Rakefile +1 -0
- data/lib/sixarm_ruby_blob/base.rb +9 -10
- data/lib/sixarm_ruby_blob/dir.rb +7 -2
- data/lib/sixarm_ruby_blob/export.rb +8 -2
- data/lib/sixarm_ruby_blob/file.rb +8 -2
- data/lib/sixarm_ruby_blob/upload.rb +8 -2
- data/lib/sixarm_ruby_blob/uri.rb +8 -2
- data/test/sixarm_ruby_blob_test.rb +2 -5
- data/test/sixarm_ruby_blob_test/samples/upload_input.bin +0 -0
- data/test/sixarm_ruby_blob_test/upload_test.rb +6 -6
- data/test/sixarm_ruby_blob_test/uri_test.rb +6 -6
- metadata +158 -71
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 85f7572e032a42c73c99511a22118599b4e448ebae25e78538d6d0d07ce098bc
|
4
|
+
data.tar.gz: 94c8481e1378978a39c87f3fc0b2fb3f7463c02a6dbb94a9ac06ac16bb97c7fa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 23217355b948c116f1132610e75ef061bcedfea513828ac327f43ac333ab0858994351a66f10814b292b7ced9219074c8837885f6a9edcb7c69c4db9fa318ba4
|
7
|
+
data.tar.gz: c5686fc9e8278e60f6d5e08ca8295a411897dcb60c4cb07aa37b81709eeddea4593cbfa1315c73584dfd4d7c1fc92737dbe998a6b4151f947c754c47df1c5917
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/Rakefile
CHANGED
@@ -1,15 +1,14 @@
|
|
1
1
|
# -*- coding: utf-8 -*-
|
2
|
+
=begin rdoc
|
2
3
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
#
|
12
|
-
###
|
4
|
+
Blob abstract model suitable for our
|
5
|
+
typical kinds of data files in our app.
|
6
|
+
|
7
|
+
We can store the blob on the local file system (see BlobFile),
|
8
|
+
We can make the blob accessible via URI (see BlobURI).
|
9
|
+
We can export the blob to an external system (see BlobExport).
|
10
|
+
|
11
|
+
=end
|
13
12
|
|
14
13
|
class Blob
|
15
14
|
|
data/lib/sixarm_ruby_blob/dir.rb
CHANGED
@@ -1,5 +1,10 @@
|
|
1
|
-
#
|
2
|
-
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
=begin rdoc
|
3
|
+
|
4
|
+
Blob methods for accessing a blob via a dir name and base name.
|
5
|
+
Exclusively for the Blob class.
|
6
|
+
|
7
|
+
=end
|
3
8
|
|
4
9
|
class Blob
|
5
10
|
|
@@ -1,5 +1,11 @@
|
|
1
|
-
#
|
2
|
-
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
=begin rdoc
|
3
|
+
|
4
|
+
Blob file methods for accessing a blob via the filesystem.
|
5
|
+
|
6
|
+
Exclusively for the Blob class.
|
7
|
+
|
8
|
+
=end
|
3
9
|
|
4
10
|
class Blob
|
5
11
|
|
data/lib/sixarm_ruby_blob/uri.rb
CHANGED
@@ -1,12 +1,9 @@
|
|
1
1
|
# -*- coding: utf-8 -*-
|
2
2
|
require "minitest/autorun"
|
3
|
-
require "coveralls"
|
4
3
|
require "simplecov"
|
5
|
-
|
6
|
-
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
|
4
|
+
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new([
|
7
5
|
SimpleCov::Formatter::HTMLFormatter,
|
8
|
-
|
9
|
-
]
|
6
|
+
])
|
10
7
|
SimpleCov.start
|
11
8
|
|
12
9
|
require "pathname"
|
File without changes
|
@@ -22,19 +22,19 @@ describe Blob do
|
|
22
22
|
@file_path = blob.file_path
|
23
23
|
|
24
24
|
# Delete a previously-uploaded file if it exists
|
25
|
-
File.
|
25
|
+
File.exist?(@file_path) and File.delete(@file_path)
|
26
26
|
|
27
27
|
# Sanity check
|
28
|
-
File.
|
28
|
+
File.exist?(tempfile.path).must_be_true "Temp file must exist: #{tempfile.path}"
|
29
29
|
|
30
30
|
end
|
31
31
|
|
32
32
|
describe ".upload" do
|
33
33
|
|
34
34
|
it "uploads" do
|
35
|
-
File.
|
35
|
+
File.exist?(@file_path).must_be_false "Blob file must not exist: #{@file_path}"
|
36
36
|
blob.upload(file_field).must_be_true
|
37
|
-
File.
|
37
|
+
File.exist?(@file_path).must_be_true "Blob file must exist: #{@file_path}"
|
38
38
|
end
|
39
39
|
|
40
40
|
end
|
@@ -42,9 +42,9 @@ describe Blob do
|
|
42
42
|
describe "#upload" do
|
43
43
|
|
44
44
|
it "uploads" do
|
45
|
-
File.
|
45
|
+
File.exist?(@file_path).must_be_false "Blob file must not exist: #{@file_path}"
|
46
46
|
Blob.upload(@file_path, file_field).must_be_true
|
47
|
-
File.
|
47
|
+
File.exist?(@file_path).must_be_true "Blob file must exist: #{@file_path}"
|
48
48
|
end
|
49
49
|
|
50
50
|
end
|
@@ -10,7 +10,7 @@ describe Blob do
|
|
10
10
|
describe "#uri_dir" do
|
11
11
|
|
12
12
|
it "is the dir" do
|
13
|
-
blob.uri_dir.must_equal dir
|
13
|
+
expect(blob.uri_dir).must_equal dir
|
14
14
|
end
|
15
15
|
|
16
16
|
end
|
@@ -18,7 +18,7 @@ describe Blob do
|
|
18
18
|
describe "#uri_base" do
|
19
19
|
|
20
20
|
it "is the base" do
|
21
|
-
blob.uri_base.must_equal base
|
21
|
+
expect(blob.uri_base).must_equal base
|
22
22
|
end
|
23
23
|
|
24
24
|
end
|
@@ -26,7 +26,7 @@ describe Blob do
|
|
26
26
|
describe "#uri" do
|
27
27
|
|
28
28
|
it "returns a URI that we can parse successfully" do
|
29
|
-
URI.parse(blob.uri)
|
29
|
+
expect(URI.parse(blob.uri)).must_be_kind_of URI
|
30
30
|
end
|
31
31
|
|
32
32
|
end
|
@@ -34,17 +34,17 @@ describe Blob do
|
|
34
34
|
describe "#uri_cacheless" do
|
35
35
|
|
36
36
|
it "gets a URI that we can parse successfully" do
|
37
|
-
URI.parse(blob.uri_cacheless)
|
37
|
+
expect(URI.parse(blob.uri_cacheless)).must_be_kind_of URI
|
38
38
|
end
|
39
39
|
|
40
40
|
it "gets a URI that has a unique id appended" do
|
41
|
-
blob.uri_cacheless.must_match
|
41
|
+
expect(blob.uri_cacheless).must_match(/\?cacheless=[-0-9abcdef]{36}$/)
|
42
42
|
end
|
43
43
|
|
44
44
|
it "returns a URI that is different each time" do
|
45
45
|
x = blob.uri_cacheless
|
46
46
|
y = blob.uri_cacheless
|
47
|
-
x.wont_equal y
|
47
|
+
expect(x).wont_equal y
|
48
48
|
end
|
49
49
|
|
50
50
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sixarm_ruby_blob
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- SixArm
|
@@ -10,117 +10,124 @@ bindir: bin
|
|
10
10
|
cert_chain:
|
11
11
|
- |
|
12
12
|
-----BEGIN CERTIFICATE-----
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
Drcxp/zlVhud+a0ezdnyNvF520arJWvqA4GrOo8F+TT2vVrjscgYjiVGdSq+8wQv
|
42
|
-
Efa5jhe8QwG7R1rdpMMP5yBSAqWuFBczMveX5j4rp9Ifw5/XsZbgwcmdm26bjhzh
|
43
|
-
w2grAHIhvR9mztm6uXQlZhv1fu3P+RWHDSYhnZSCJSCdxPzQJ1mG5T5ahiL3HvCZ
|
44
|
-
2AC9FOGkybW6DJEFSFFMlNk0IILsa/gNp8ufGuTVLWF9FUUdMNK+TMbghnifT8/1
|
45
|
-
n+ES/gQPOnvmVkLDGw==
|
13
|
+
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
|
46
41
|
-----END CERTIFICATE-----
|
47
|
-
date:
|
42
|
+
date: 2018-06-23 00:00:00.000000000 Z
|
48
43
|
dependencies:
|
49
44
|
- !ruby/object:Gem::Dependency
|
50
|
-
name:
|
45
|
+
name: sixarm_ruby_fab
|
51
46
|
requirement: !ruby/object:Gem::Requirement
|
52
47
|
requirements:
|
53
|
-
- -
|
48
|
+
- - ">="
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: 2.0.0
|
51
|
+
- - "<"
|
54
52
|
- !ruby/object:Gem::Version
|
55
|
-
version:
|
53
|
+
version: '3'
|
56
54
|
type: :development
|
57
55
|
prerelease: false
|
58
56
|
version_requirements: !ruby/object:Gem::Requirement
|
59
57
|
requirements:
|
60
|
-
- -
|
58
|
+
- - ">="
|
61
59
|
- !ruby/object:Gem::Version
|
62
|
-
version:
|
60
|
+
version: 2.0.0
|
61
|
+
- - "<"
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: '3'
|
63
64
|
- !ruby/object:Gem::Dependency
|
64
|
-
name:
|
65
|
+
name: minitest
|
65
66
|
requirement: !ruby/object:Gem::Requirement
|
66
67
|
requirements:
|
67
|
-
- -
|
68
|
+
- - ">="
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: 5.11.3
|
71
|
+
- - "<"
|
68
72
|
- !ruby/object:Gem::Version
|
69
|
-
version:
|
73
|
+
version: '6'
|
70
74
|
type: :development
|
71
75
|
prerelease: false
|
72
76
|
version_requirements: !ruby/object:Gem::Requirement
|
73
77
|
requirements:
|
74
|
-
- -
|
78
|
+
- - ">="
|
75
79
|
- !ruby/object:Gem::Version
|
76
|
-
version:
|
80
|
+
version: 5.11.3
|
81
|
+
- - "<"
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: '6'
|
77
84
|
- !ruby/object:Gem::Dependency
|
78
|
-
name:
|
85
|
+
name: sixarm_ruby_minitest_extensions
|
79
86
|
requirement: !ruby/object:Gem::Requirement
|
80
87
|
requirements:
|
81
88
|
- - ">="
|
82
89
|
- !ruby/object:Gem::Version
|
83
|
-
version:
|
90
|
+
version: 1.0.8
|
84
91
|
- - "<"
|
85
92
|
- !ruby/object:Gem::Version
|
86
|
-
version: '
|
93
|
+
version: '2'
|
87
94
|
type: :development
|
88
95
|
prerelease: false
|
89
96
|
version_requirements: !ruby/object:Gem::Requirement
|
90
97
|
requirements:
|
91
98
|
- - ">="
|
92
99
|
- !ruby/object:Gem::Version
|
93
|
-
version:
|
100
|
+
version: 1.0.8
|
94
101
|
- - "<"
|
95
102
|
- !ruby/object:Gem::Version
|
96
|
-
version: '
|
103
|
+
version: '2'
|
97
104
|
- !ruby/object:Gem::Dependency
|
98
105
|
name: rake
|
99
106
|
requirement: !ruby/object:Gem::Requirement
|
100
107
|
requirements:
|
101
|
-
- - "
|
108
|
+
- - ">="
|
102
109
|
- !ruby/object:Gem::Version
|
103
|
-
version:
|
110
|
+
version: 12.3.1
|
104
111
|
- - "<"
|
105
112
|
- !ruby/object:Gem::Version
|
106
|
-
version: '
|
113
|
+
version: '13'
|
107
114
|
type: :development
|
108
115
|
prerelease: false
|
109
116
|
version_requirements: !ruby/object:Gem::Requirement
|
110
117
|
requirements:
|
111
|
-
- - "
|
118
|
+
- - ">="
|
112
119
|
- !ruby/object:Gem::Version
|
113
|
-
version:
|
120
|
+
version: 12.3.1
|
114
121
|
- - "<"
|
115
122
|
- !ruby/object:Gem::Version
|
116
|
-
version: '
|
123
|
+
version: '13'
|
117
124
|
- !ruby/object:Gem::Dependency
|
118
125
|
name: simplecov
|
119
126
|
requirement: !ruby/object:Gem::Requirement
|
120
127
|
requirements:
|
121
128
|
- - ">="
|
122
129
|
- !ruby/object:Gem::Version
|
123
|
-
version: 0.
|
130
|
+
version: 0.16.1
|
124
131
|
- - "<"
|
125
132
|
- !ruby/object:Gem::Version
|
126
133
|
version: '2'
|
@@ -130,30 +137,110 @@ dependencies:
|
|
130
137
|
requirements:
|
131
138
|
- - ">="
|
132
139
|
- !ruby/object:Gem::Version
|
133
|
-
version: 0.
|
140
|
+
version: 0.16.1
|
134
141
|
- - "<"
|
135
142
|
- !ruby/object:Gem::Version
|
136
143
|
version: '2'
|
137
144
|
- !ruby/object:Gem::Dependency
|
138
|
-
name:
|
145
|
+
name: flog
|
139
146
|
requirement: !ruby/object:Gem::Requirement
|
140
147
|
requirements:
|
141
148
|
- - ">="
|
142
149
|
- !ruby/object:Gem::Version
|
143
|
-
version:
|
150
|
+
version: 4.6.2
|
144
151
|
- - "<"
|
145
152
|
- !ruby/object:Gem::Version
|
146
|
-
version: '
|
153
|
+
version: '5'
|
147
154
|
type: :development
|
148
155
|
prerelease: false
|
149
156
|
version_requirements: !ruby/object:Gem::Requirement
|
150
157
|
requirements:
|
151
158
|
- - ">="
|
152
159
|
- !ruby/object:Gem::Version
|
153
|
-
version:
|
160
|
+
version: 4.6.2
|
154
161
|
- - "<"
|
155
162
|
- !ruby/object:Gem::Version
|
156
|
-
version: '
|
163
|
+
version: '5'
|
164
|
+
- !ruby/object:Gem::Dependency
|
165
|
+
name: flay
|
166
|
+
requirement: !ruby/object:Gem::Requirement
|
167
|
+
requirements:
|
168
|
+
- - ">="
|
169
|
+
- !ruby/object:Gem::Version
|
170
|
+
version: 2.12.0
|
171
|
+
- - "<"
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: '3'
|
174
|
+
type: :development
|
175
|
+
prerelease: false
|
176
|
+
version_requirements: !ruby/object:Gem::Requirement
|
177
|
+
requirements:
|
178
|
+
- - ">="
|
179
|
+
- !ruby/object:Gem::Version
|
180
|
+
version: 2.12.0
|
181
|
+
- - "<"
|
182
|
+
- !ruby/object:Gem::Version
|
183
|
+
version: '3'
|
184
|
+
- !ruby/object:Gem::Dependency
|
185
|
+
name: reek
|
186
|
+
requirement: !ruby/object:Gem::Requirement
|
187
|
+
requirements:
|
188
|
+
- - ">="
|
189
|
+
- !ruby/object:Gem::Version
|
190
|
+
version: 4.8.1
|
191
|
+
- - "<"
|
192
|
+
- !ruby/object:Gem::Version
|
193
|
+
version: '5'
|
194
|
+
type: :development
|
195
|
+
prerelease: false
|
196
|
+
version_requirements: !ruby/object:Gem::Requirement
|
197
|
+
requirements:
|
198
|
+
- - ">="
|
199
|
+
- !ruby/object:Gem::Version
|
200
|
+
version: 4.8.1
|
201
|
+
- - "<"
|
202
|
+
- !ruby/object:Gem::Version
|
203
|
+
version: '5'
|
204
|
+
- !ruby/object:Gem::Dependency
|
205
|
+
name: rubycritic
|
206
|
+
requirement: !ruby/object:Gem::Requirement
|
207
|
+
requirements:
|
208
|
+
- - ">="
|
209
|
+
- !ruby/object:Gem::Version
|
210
|
+
version: 3.4.0
|
211
|
+
- - "<"
|
212
|
+
- !ruby/object:Gem::Version
|
213
|
+
version: '4'
|
214
|
+
type: :development
|
215
|
+
prerelease: false
|
216
|
+
version_requirements: !ruby/object:Gem::Requirement
|
217
|
+
requirements:
|
218
|
+
- - ">="
|
219
|
+
- !ruby/object:Gem::Version
|
220
|
+
version: 3.4.0
|
221
|
+
- - "<"
|
222
|
+
- !ruby/object:Gem::Version
|
223
|
+
version: '4'
|
224
|
+
- !ruby/object:Gem::Dependency
|
225
|
+
name: rubocop
|
226
|
+
requirement: !ruby/object:Gem::Requirement
|
227
|
+
requirements:
|
228
|
+
- - ">="
|
229
|
+
- !ruby/object:Gem::Version
|
230
|
+
version: 0.57.2
|
231
|
+
- - "<"
|
232
|
+
- !ruby/object:Gem::Version
|
233
|
+
version: '1'
|
234
|
+
type: :development
|
235
|
+
prerelease: false
|
236
|
+
version_requirements: !ruby/object:Gem::Requirement
|
237
|
+
requirements:
|
238
|
+
- - ">="
|
239
|
+
- !ruby/object:Gem::Version
|
240
|
+
version: 0.57.2
|
241
|
+
- - "<"
|
242
|
+
- !ruby/object:Gem::Version
|
243
|
+
version: '1'
|
157
244
|
description: Keep track of data as a file, or URI, with basic upload etc.
|
158
245
|
email: sixarm@sixarm.com
|
159
246
|
executables: []
|
@@ -178,11 +265,12 @@ files:
|
|
178
265
|
- test/sixarm_ruby_blob_test/uri_test.rb
|
179
266
|
homepage: http://sixarm.com/
|
180
267
|
licenses:
|
181
|
-
-
|
182
|
-
-
|
268
|
+
- Apache-2.0
|
269
|
+
- Artistic-2.0
|
270
|
+
- BSD-3-Clause
|
271
|
+
- GPL-3.0
|
183
272
|
- MIT
|
184
|
-
-
|
185
|
-
- Various
|
273
|
+
- MPL-2.0
|
186
274
|
metadata: {}
|
187
275
|
post_install_message:
|
188
276
|
rdoc_options: []
|
@@ -192,7 +280,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
192
280
|
requirements:
|
193
281
|
- - ">="
|
194
282
|
- !ruby/object:Gem::Version
|
195
|
-
version: '
|
283
|
+
version: '2.5'
|
196
284
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
197
285
|
requirements:
|
198
286
|
- - ">="
|
@@ -200,10 +288,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
200
288
|
version: '0'
|
201
289
|
requirements: []
|
202
290
|
rubyforge_project:
|
203
|
-
rubygems_version: 2.
|
291
|
+
rubygems_version: 2.7.7
|
204
292
|
signing_key:
|
205
293
|
specification_version: 4
|
206
|
-
summary: SixArm.com
|
294
|
+
summary: SixArm.com → Ruby → Blob of data abstract base class
|
207
295
|
test_files:
|
208
296
|
- test/sixarm_ruby_blob_test.rb
|
209
297
|
- test/sixarm_ruby_blob_test/base_test.rb
|
@@ -213,4 +301,3 @@ test_files:
|
|
213
301
|
- test/sixarm_ruby_blob_test/upload_test.rb
|
214
302
|
- test/sixarm_ruby_blob_test/uri_test.rb
|
215
303
|
- test/sixarm_ruby_blob_test/samples/upload_input.bin
|
216
|
-
has_rdoc: true
|
metadata.gz.sig
CHANGED
Binary file
|