mingle-storage 0.0.11 → 0.0.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -7
- data/lib/storage/s3_store.rb +16 -1
- metadata +43 -44
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
---
|
2
|
-
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
5
|
-
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: d6e30df3b5b0da6c830b87632bcb0e15280c822d
|
4
|
+
data.tar.gz: 30af0ca528c96ed55aa1ae6a0709f5c9cbbfd55c
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: c7e04277e1f9697532bf2b675201cd3f48f78482053d9c3c70a7c1dbc001a6c925cb958132b7e59c724e4f502d5a8e89fe4906b4f342922937e2a071b2acdc91
|
7
|
+
data.tar.gz: 2ff1b92c67d4c1e46f2c877c03882d7873369d2e29e0cd54dae537e6340741613637aa51ceeb74a2d4c5a9746ea5a6771b172d2fa0db6b321d0444dc6471d47f
|
data/lib/storage/s3_store.rb
CHANGED
@@ -97,7 +97,22 @@ module Storage
|
|
97
97
|
"xlsx" => "application/x-excel",
|
98
98
|
"pptx" => "application/vnd.openxmlformats-officedocument.presentationml.presentation",
|
99
99
|
"eml" => "text/plain",
|
100
|
-
"msg" => "text/plain"
|
100
|
+
"msg" => "text/plain",
|
101
|
+
"odt" => "application/vnd.oasis.opendocument.text",
|
102
|
+
"ott" => "application/vnd.oasis.opendocument.text-template",
|
103
|
+
"oth" => "application/vnd.oasis.opendocument.text-web",
|
104
|
+
"odm" => "application/vnd.oasis.opendocument.text-master",
|
105
|
+
"odg" => "application/vnd.oasis.opendocument.graphics",
|
106
|
+
"otg" => "application/vnd.oasis.opendocument.graphics-template",
|
107
|
+
"odp" => "application/vnd.oasis.opendocument.presentation",
|
108
|
+
"otp" => "application/vnd.oasis.opendocument.presentation-template",
|
109
|
+
"ods" => "application/vnd.oasis.opendocument.spreadsheet",
|
110
|
+
"ots" => "application/vnd.oasis.opendocument.spreadsheet-template",
|
111
|
+
"odc" => "application/vnd.oasis.opendocument.chart",
|
112
|
+
"odf" => "application/vnd.oasis.opendocument.formula",
|
113
|
+
"odb" => "application/vnd.oasis.opendocument.database",
|
114
|
+
"odi" => "application/vnd.oasis.opendocument.image",
|
115
|
+
"oxt" => "application/vnd.openofficeorg.extension",
|
101
116
|
}
|
102
117
|
|
103
118
|
|
metadata
CHANGED
@@ -1,61 +1,60 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: mingle-storage
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.12
|
5
5
|
platform: ruby
|
6
|
-
authors:
|
7
|
-
|
8
|
-
autorequire:
|
6
|
+
authors:
|
7
|
+
- ThoughtWorks Studios
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
11
|
+
date: 2015-01-26 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: aws-sdk
|
15
|
+
version_requirements: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
requirement: !ruby/object:Gem::Requirement
|
21
|
+
requirements:
|
22
|
+
- - '>='
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: '0'
|
25
|
+
prerelease: false
|
26
|
+
type: :runtime
|
25
27
|
description: Mingle storage API to support filesystem and AWS S3 backed storage
|
26
28
|
email: mingle-dev@thoughtworks.com
|
27
29
|
executables: []
|
28
|
-
|
29
30
|
extensions: []
|
30
|
-
|
31
31
|
extra_rdoc_files: []
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
- lib/storage/s3_store.rb
|
32
|
+
files:
|
33
|
+
- lib/storage.rb
|
34
|
+
- lib/storage/filesystem_store.rb
|
35
|
+
- lib/storage/s3_store.rb
|
37
36
|
homepage: http://www.thoughtworks.com/products
|
38
|
-
licenses:
|
39
|
-
|
37
|
+
licenses:
|
38
|
+
- MIT
|
40
39
|
metadata: {}
|
41
|
-
|
42
|
-
post_install_message:
|
40
|
+
post_install_message:
|
43
41
|
rdoc_options: []
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
-
|
50
|
-
|
51
|
-
|
52
|
-
|
42
|
+
require_paths:
|
43
|
+
- lib
|
44
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - '>='
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: '0'
|
49
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - '>='
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0'
|
53
54
|
requirements: []
|
54
|
-
|
55
|
-
rubyforge_project:
|
55
|
+
rubyforge_project:
|
56
56
|
rubygems_version: 2.1.9
|
57
|
-
signing_key:
|
57
|
+
signing_key:
|
58
58
|
specification_version: 4
|
59
59
|
summary: Mingle storage API to support filesystem and AWS S3 backed storage
|
60
60
|
test_files: []
|
61
|
-
|