blobby 1.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.
metadata ADDED
@@ -0,0 +1,77 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: blobby
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Mike Williams
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-06-18 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description:
14
+ email:
15
+ - mdub@dogbiscuit.org
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - ".gitignore"
21
+ - ".rspec"
22
+ - ".rubocop.yml"
23
+ - ".travis.yml"
24
+ - Gemfile
25
+ - README.md
26
+ - Rakefile
27
+ - blobby.gemspec
28
+ - lib/blobby/composite_store.rb
29
+ - lib/blobby/fake_success_store.rb
30
+ - lib/blobby/filesystem_store.rb
31
+ - lib/blobby/http_store.rb
32
+ - lib/blobby/in_memory_store.rb
33
+ - lib/blobby/key_constraint.rb
34
+ - lib/blobby/key_transforming_store.rb
35
+ - lib/blobby/logging_store.rb
36
+ - lib/blobby/placeholder.png
37
+ - lib/blobby/version.rb
38
+ - spec/blobby/composite_store_spec.rb
39
+ - spec/blobby/fake_success_store_spec.rb
40
+ - spec/blobby/filesystem_store_spec.rb
41
+ - spec/blobby/http_store_spec.rb
42
+ - spec/blobby/in_memory_store_spec.rb
43
+ - spec/blobby/key_transforming_store_spec.rb
44
+ - spec/blobby/logging_store_spec.rb
45
+ - spec/blobby/store_behaviour.rb
46
+ homepage: https://github.com/realestate-com.au/blobby
47
+ licenses: []
48
+ metadata: {}
49
+ post_install_message:
50
+ rdoc_options: []
51
+ require_paths:
52
+ - lib
53
+ required_ruby_version: !ruby/object:Gem::Requirement
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ version: '0'
58
+ required_rubygems_version: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: '0'
63
+ requirements: []
64
+ rubyforge_project:
65
+ rubygems_version: 2.4.5
66
+ signing_key:
67
+ specification_version: 4
68
+ summary: Various ways of storing BLOBs
69
+ test_files:
70
+ - spec/blobby/composite_store_spec.rb
71
+ - spec/blobby/fake_success_store_spec.rb
72
+ - spec/blobby/filesystem_store_spec.rb
73
+ - spec/blobby/http_store_spec.rb
74
+ - spec/blobby/in_memory_store_spec.rb
75
+ - spec/blobby/key_transforming_store_spec.rb
76
+ - spec/blobby/logging_store_spec.rb
77
+ - spec/blobby/store_behaviour.rb