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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: a6a79a4ed33c1d85d2bc2a8100ab06b7206b51fa
4
- data.tar.gz: 9f4443d39a6e3eaa7328368895ba3b50927ce09e
2
+ SHA256:
3
+ metadata.gz: 85f7572e032a42c73c99511a22118599b4e448ebae25e78538d6d0d07ce098bc
4
+ data.tar.gz: 94c8481e1378978a39c87f3fc0b2fb3f7463c02a6dbb94a9ac06ac16bb97c7fa
5
5
  SHA512:
6
- metadata.gz: 20dde8799d2ee41bbbd9fee649f88ff5099015d39645c9360143abeecec319cbf0f3ae89ab1540a08f7c47036797eec1137d7869822e4fecbc4561fe878c0054
7
- data.tar.gz: adda527abf28072d90eb351caf44359cd6b34f65e20b8c50cc93e858a71b99b2454c191a0fe88308841aaa17183f1fd93ad629256b88868c24756b86b48cace8
6
+ metadata.gz: 23217355b948c116f1132610e75ef061bcedfea513828ac327f43ac333ab0858994351a66f10814b292b7ced9219074c8837885f6a9edcb7c69c4db9fa318ba4
7
+ data.tar.gz: c5686fc9e8278e60f6d5e08ca8295a411897dcb60c4cb07aa37b81709eeddea4593cbfa1315c73584dfd4d7c1fc92737dbe998a6b4151f947c754c47df1c5917
Binary file
data.tar.gz.sig CHANGED
Binary file
data/Rakefile CHANGED
@@ -8,3 +8,4 @@ Rake::TestTask.new(:test) do |t|
8
8
  end
9
9
 
10
10
  task :default => [:test]
11
+ task :default => [:test]
@@ -1,15 +1,14 @@
1
1
  # -*- coding: utf-8 -*-
2
+ =begin rdoc
2
3
 
3
- ###
4
- #
5
- # Blob abstract model suitable for our
6
- # typical kinds of data files in our app.
7
- #
8
- # We can store the blob on the local file system (see BlobFile),
9
- # We can make the blob accessible via URI (see BlobURI).
10
- # We can export the blob to an external system (see BlobExport).
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
 
@@ -1,5 +1,10 @@
1
- # Blob methods for accessing a blob via a dir name and base name.
2
- # Exclusively for the Blob class.
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
- # Blob methods for exporting.
2
- # Exclusively for the Blob class.
1
+ # -*- coding: utf-8 -*-
2
+ =begin rdoc
3
+
4
+ Blob methods for exporting.
5
+
6
+ Exclusively for the Blob class.
7
+
8
+ =end
3
9
 
4
10
  class Blob
5
11
 
@@ -1,5 +1,11 @@
1
- # Blob file methods for accessing a blob via the filesystem.
2
- # Exclusively for the Blob class.
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
 
@@ -1,5 +1,11 @@
1
- # Blob method to upload from a web page.
2
- # Exclusively for the Blob class.
1
+ # -*- coding: utf-8 -*-
2
+ =begin rdoc
3
+
4
+ Blob method to upload from a web page.
5
+
6
+ Exclusively for the Blob class.
7
+
8
+ =end
3
9
 
4
10
  class Blob
5
11
 
@@ -1,5 +1,11 @@
1
- # Blob URI methods for accessing a blob via the web.
2
- # Exclusively for the Blob class.
1
+ # -*- coding: utf-8 -*-
2
+ =begin rdoc
3
+
4
+ Blob URI methods for accessing a blob via the web.
5
+
6
+ Exclusively for the Blob class.
7
+
8
+ =end
3
9
 
4
10
  class Blob
5
11
 
@@ -1,12 +1,9 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  require "minitest/autorun"
3
- require "coveralls"
4
3
  require "simplecov"
5
- Coveralls.wear!
6
- SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
4
+ SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new([
7
5
  SimpleCov::Formatter::HTMLFormatter,
8
- Coveralls::SimpleCov::Formatter
9
- ]
6
+ ])
10
7
  SimpleCov.start
11
8
 
12
9
  require "pathname"
@@ -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.exists?(@file_path) and File.delete(@file_path)
25
+ File.exist?(@file_path) and File.delete(@file_path)
26
26
 
27
27
  # Sanity check
28
- File.exists?(tempfile.path).must_be_true "Temp file must exist: #{tempfile.path}"
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.exists?(@file_path).must_be_false "Blob file must not exist: #{@file_path}"
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.exists?(@file_path).must_be_true "Blob file must exist: #{@file_path}"
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.exists?(@file_path).must_be_false "Blob file must not exist: #{@file_path}"
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.exists?(@file_path).must_be_true "Blob file must exist: #{@file_path}"
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 /\?cacheless=[-0-9abcdef]{36}$/
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: 1.0.3
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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- HRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4ICAQCYcCnvJpEhpo5mdVM8JDUuUZFt
35
- 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
- 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
- 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
- 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
- FlfMBznZKOdxDFAmNaxvXBe2XeTzrZPvJtnNLWL6K4LaBHhq3bBdh1Hge0iMkpQ7
40
- RTIGlfhlIFkMV3wT0LTsNznUPsoo6e+IW/tDrk23mrNRY6QynTETb+QVIevuzD9m
41
- Drcxp/zlVhud+a0ezdnyNvF520arJWvqA4GrOo8F+TT2vVrjscgYjiVGdSq+8wQv
42
- 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
- w2grAHIhvR9mztm6uXQlZhv1fu3P+RWHDSYhnZSCJSCdxPzQJ1mG5T5ahiL3HvCZ
44
- 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
45
- n+ES/gQPOnvmVkLDGw==
13
+ MIIFPDCCAyQCCQDx7Y5LWGuPPzANBgkqhkiG9w0BAQsFADBgMQswCQYDVQQGEwJV
14
+ UzETMBEGA1UECAwKQ2FsaWZvcm5pYTEWMBQGA1UEBwwNU2FuIEZyYW5jaXNjbzEP
15
+ MA0GA1UECgwGU2l4QXJtMRMwEQYDVQQDDApzaXhhcm0uY29tMB4XDTE4MDExMzIy
16
+ NDYyM1oXDTIwMTAwOTIyNDYyM1owYDELMAkGA1UEBhMCVVMxEzARBgNVBAgMCkNh
17
+ bGlmb3JuaWExFjAUBgNVBAcMDVNhbiBGcmFuY2lzY28xDzANBgNVBAoMBlNpeEFy
18
+ bTETMBEGA1UEAwwKc2l4YXJtLmNvbTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCC
19
+ AgoCggIBAMMPPjYWd77gRmOEkMb+1H9+ckIHlA325OkES2g5Y58hIDzZYTGIxjSP
20
+ 3N7uYx5qR8qZvuO4F1McGJ/NES2robjQcV/aIRXD+5RjbokyYYGJlJujm5c/wZme
21
+ Us7pOzQxc8QcogsdInwQ6O9hTQ4zBdOFZt6YBp5y9ycXVIApBnxJHBU3W6Ir1hl6
22
+ 3v6RYBgHFd3g0dCwuBoaYZE5MU/4q91vc48XhioqXdJlaDyw1ZMyvE+loi+8quVg
23
+ bpUadC/QUZukABYCu6rS6fiRLffmMy/Db7d8b1fP+J1i4bL5atF4xz8c1BDwc2x1
24
+ mXJDUBznMSDpmjAkUwDjh+330tYT/VTioqobCMSLfwgJI2Uqrr8H8N9yeSsOMAup
25
+ nJKnJHXeZPEGAr2LBCcok2KUcdugdYq/0C+ec1bU8BHDDoEOM54rhPKKmCJentO6
26
+ KJRoJfu0ovQj1/BvSksUUWdvhy6jzXviyQq44GKEwsJix6sdNKEpndVDQGOvHPg5
27
+ gcakte7KrpK2Udwy+dK+caHJWXOouHPPFfdZWr5U9DkNjtvvQrwQUsMxECoByKYA
28
+ 7wmX3SwzodtuzAPGzxuwkqwy1RtHAfbrFINFBxP35G/f16x2mtwEpqsdS4LE+c0C
29
+ l3eEQ8xIv3ijKUZek87Uxk7/JH76C3/9tSQeFkt0NkEduHOR1H7RAgMBAAEwDQYJ
30
+ KoZIhvcNAQELBQADggIBALIBNN7zUhFldUaXWGwv6032ZwM2Sm1U8VF8YaH71NLg
31
+ FhlcuJ0JLkGlxT0/68acS0EwoqOEgaHyPx8eodjyDv2MuJlWJGXIgHgLD66Tu0VA
32
+ Wt1sgA823Rl35WVSMqiyoxwsrGFwMtayNrrlpdhB8Ny8CMA2NfKyEJkh4+xlE72a
33
+ D8Eu8NFr9Tt5lHWXdZBI5BhzhQxPPxeIuw0wZ3+kiwxRie7K4XhKsOIrPmu2i6QV
34
+ Yl/663wZgWpqrroSnc3PE3lsuTW7quUvayjtqMTU2qrh7i21oB+/Nn+I6gcxYJZb
35
+ UlK+tvsqoM94U6sFTjw9mDt62MLQGrJtHShS+ZZiGmWj1sKreuwGJnCVDoBk15xa
36
+ oqlvfvLAMBCqlfrHhvGUfbIMgzb9uXNmCjzYMsQxuIgF6IMis6Kq02NBAR91HPMe
37
+ 2RoY7CdBHMxW+O0tgS2xoQbOwb+ti1j4MbsWpCqS9Mteck0Z7jZpRRrUDjXU+/7Z
38
+ RmW9HX0oLIoCBDChCcEKG0Ma4IvHUgjv47f5iYpkXuhifiK4xMG/s+T5Euw3Wg9J
39
+ tzpk/VnZXj7Ek/earx+N/Z+Wtnl2xENm5IF8SFPeI1HFa9NH47pqtxF1YKpNIEVc
40
+ 2xa2BNHSePe7tys/2hbmZuyMu8X5ERmovsabSXB3a+YwtJh5c2jhA21wF7986s0q
46
41
  -----END CERTIFICATE-----
47
- date: 2015-07-19 00:00:00.000000000 Z
42
+ date: 2018-06-23 00:00:00.000000000 Z
48
43
  dependencies:
49
44
  - !ruby/object:Gem::Dependency
50
- name: sixarm_minitest_extensions
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: 1.0.5
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: 1.0.5
60
+ version: 2.0.0
61
+ - - "<"
62
+ - !ruby/object:Gem::Version
63
+ version: '3'
63
64
  - !ruby/object:Gem::Dependency
64
- name: sixarm_ruby_fab
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: 1.0.0
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: 1.0.0
80
+ version: 5.11.3
81
+ - - "<"
82
+ - !ruby/object:Gem::Version
83
+ version: '6'
77
84
  - !ruby/object:Gem::Dependency
78
- name: minitest
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: 5.7.0
90
+ version: 1.0.8
84
91
  - - "<"
85
92
  - !ruby/object:Gem::Version
86
- version: '6'
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: 5.7.0
100
+ version: 1.0.8
94
101
  - - "<"
95
102
  - !ruby/object:Gem::Version
96
- version: '6'
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: 10.4.2
110
+ version: 12.3.1
104
111
  - - "<"
105
112
  - !ruby/object:Gem::Version
106
- version: '11'
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: 10.4.2
120
+ version: 12.3.1
114
121
  - - "<"
115
122
  - !ruby/object:Gem::Version
116
- version: '11'
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.10.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.10.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: coveralls
145
+ name: flog
139
146
  requirement: !ruby/object:Gem::Requirement
140
147
  requirements:
141
148
  - - ">="
142
149
  - !ruby/object:Gem::Version
143
- version: 0.8.2
150
+ version: 4.6.2
144
151
  - - "<"
145
152
  - !ruby/object:Gem::Version
146
- version: '2'
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: 0.8.2
160
+ version: 4.6.2
154
161
  - - "<"
155
162
  - !ruby/object:Gem::Version
156
- version: '2'
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
- - BSD
182
- - GPL
268
+ - Apache-2.0
269
+ - Artistic-2.0
270
+ - BSD-3-Clause
271
+ - GPL-3.0
183
272
  - MIT
184
- - PAL
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: '0'
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.4.8
291
+ rubygems_version: 2.7.7
204
292
  signing_key:
205
293
  specification_version: 4
206
- summary: SixArm.com » Ruby » Blob of data abstract base class
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