shrine-configurable_storage 0.1.0 → 0.1.1
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 +4 -4
- data/CHANGELOG.md +3 -0
- data/Gemfile +3 -3
- data/README.md +3 -0
- data/bin/console +2 -2
- data/lib/shrine/plugins/configurable_storage.rb +1 -1
- data/shrine-configurable_storage.gemspec +1 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8adb2989838d5f64e97338a64bbd875136979026
|
|
4
|
+
data.tar.gz: b948c95f4bae337349d96a5f7e00354fa008cca9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6205bd76319c03a35f3a3c1f3ca5df3fa4baafe4f36500ee92cfef74c01787422b66d025a119a39c86d831af75672d24d6188e31887256df555434fb76fbdc5f
|
|
7
|
+
data.tar.gz: c65d0df33dad6a51be7ee2c08f62f54a135644f7d5e7808968e185d7a67d54a9cbafa5aedc99cf3f47944c65348d7151772be4c62731664efc85d0c1298408d5
|
data/CHANGELOG.md
CHANGED
data/Gemfile
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
source
|
|
1
|
+
source 'https://rubygems.org'
|
|
2
2
|
|
|
3
|
-
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
|
|
3
|
+
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
|
|
4
4
|
|
|
5
|
-
# Specify your gem's dependencies in shrine-
|
|
5
|
+
# Specify your gem's dependencies in shrine-content_addressable.gemspec
|
|
6
6
|
gemspec
|
data/README.md
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
# shrine-configurable_storage
|
|
2
|
+
[](https://travis-ci.com/SleeplessByte/shrine-configurable_storage)
|
|
3
|
+
[](https://badge.fury.io/rb/tempfile-fixture)
|
|
4
|
+
[](http://opensource.org/licenses/MIT)
|
|
2
5
|
|
|
3
6
|
Register Shrine storages using a key and lazy configure that storage later.
|
|
4
7
|
|
data/bin/console
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
|
|
3
|
-
require
|
|
4
|
-
require
|
|
3
|
+
require 'bundler/setup'
|
|
4
|
+
require 'shrine/plugins/configurable_storage'
|
|
5
5
|
|
|
6
6
|
# You can add fixtures and/or initialization code here to make experimenting
|
|
7
7
|
# with your gem easier. You can also use a different console, if you like.
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
|
|
2
1
|
# frozen_string_literal: true
|
|
3
2
|
|
|
4
3
|
lib = File.expand_path('lib', __dir__)
|
|
@@ -6,7 +5,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
6
5
|
|
|
7
6
|
Gem::Specification.new do |spec|
|
|
8
7
|
spec.name = 'shrine-configurable_storage'
|
|
9
|
-
spec.version = '0.1.
|
|
8
|
+
spec.version = '0.1.1'
|
|
10
9
|
spec.authors = ['Derk-Jan Karrenbeld']
|
|
11
10
|
spec.email = ['derk-jan+github@karrenbeld.info']
|
|
12
11
|
|