stashify 1.0.5 → 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 +4 -4
- data/lib/stashify/directory/local.rb +1 -1
- data/lib/stashify/file/local.rb +1 -6
- data/lib/stashify/file.rb +6 -4
- data/lib/stashify/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 72261627ef443188786450d298ba1b7223c0297466b7991979ab34aa3b348bff
|
4
|
+
data.tar.gz: 9544398bc63888267cafbb8ead584340fb7b2597a526a8b9e04adf2672fe1c9b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e143737520b394cf9e5a652a34cb018f1a351bc9d0fe9ff2b5e6a4a8940f8de6b20e1a33a28ac3d42ab894d885b133fe64ebc2172889feaa70f5298e326407a9
|
7
|
+
data.tar.gz: 73e3b1d0b25a2ed60d0654dadac1b65b8ee44b5359f5100ad2019e81b9fd79dd6660d478edb0d64a22198a3f2f355d7cdf2dd6442da04b022da62edd2653905f
|
data/lib/stashify/file/local.rb
CHANGED
@@ -5,13 +5,8 @@ require "stashify/file"
|
|
5
5
|
module Stashify
|
6
6
|
class File
|
7
7
|
class Local < Stashify::File
|
8
|
-
def initialize(path)
|
9
|
-
@path = path
|
10
|
-
super(name: ::File.basename(path), contents: nil)
|
11
|
-
end
|
12
|
-
|
13
8
|
def contents
|
14
|
-
::File.read(
|
9
|
+
::File.read(path)
|
15
10
|
end
|
16
11
|
end
|
17
12
|
end
|
data/lib/stashify/file.rb
CHANGED
@@ -4,12 +4,14 @@ require "stashify"
|
|
4
4
|
|
5
5
|
module Stashify
|
6
6
|
class File
|
7
|
-
attr_reader :name, :contents
|
7
|
+
attr_reader :name, :path, :contents
|
8
8
|
|
9
|
-
def initialize(name
|
10
|
-
raise
|
9
|
+
def initialize(name: nil, path: nil, contents: "")
|
10
|
+
raise StandardError, "name or path must be defined" unless name || path
|
11
|
+
raise Stashify::InvalidFile, "Name '#{name}' contains a /" if name && name =~ %r{/}
|
11
12
|
|
12
|
-
@
|
13
|
+
@path = path
|
14
|
+
@name = name || ::File.basename(path)
|
13
15
|
@contents = contents
|
14
16
|
end
|
15
17
|
|
data/lib/stashify/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stashify
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lambda Null
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-03-
|
11
|
+
date: 2023-03-28 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Provides an abstraction to various services (local filesystem, S3, etc)
|
14
14
|
email:
|