stashify 1.0 → 1.0.2
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/.rubocop.yml +3 -0
- data/Gemfile.lock +1 -1
- data/lib/stashify/directory/local.rb +32 -16
- data/lib/stashify/directory.rb +19 -2
- data/lib/stashify/version.rb +1 -1
- metadata +2 -3
- data/stashify.gemspec +0 -37
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 84f0655199b71b4079fc0405ed2bd68ccd65f0231f1531005c59f1ada5b88efe
|
4
|
+
data.tar.gz: b8f4d4b7491ea3d51271579e455fcbe08e4e9a74040f3deba84581b2d1b02538
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 623475feb2be6768f59519458108029af6b244396d36d67c3d3529e60bbf231f8164921d1cd334a6a7eebdd6059578083be2f841e50e4b7dc20327e3853707ef
|
7
|
+
data.tar.gz: 33b63c2878050f49c35d24d00f81917f35503353019dc7b23c3f4f1a4fcfb7f95897b66d5dbb288012fcbd57b0a91bd162d8015b89802b70e7b81840222b77ed
|
data/.rubocop.yml
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require "stashify/file"
|
3
|
+
require "stashify/file/local"
|
4
4
|
require "stashify/directory"
|
5
5
|
|
6
6
|
module Stashify
|
@@ -13,23 +13,15 @@ module Stashify
|
|
13
13
|
super(name: ::File.basename(path))
|
14
14
|
end
|
15
15
|
|
16
|
-
def
|
17
|
-
path =
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
file = ::File.read(path)
|
22
|
-
Stashify::File.new(name: name, contents: file)
|
23
|
-
end
|
16
|
+
def write_directory(directory)
|
17
|
+
path = path_of(directory.name)
|
18
|
+
FileUtils.mkdir(path)
|
19
|
+
subdir = Stashify::Directory::Local.new(path)
|
20
|
+
directory.files.each { |file| subdir.write(file) }
|
24
21
|
end
|
25
22
|
|
26
|
-
def
|
27
|
-
|
28
|
-
if file.is_a?(Stashify::Directory)
|
29
|
-
FileUtils.mkdir(path)
|
30
|
-
else
|
31
|
-
::File.write(path, file.contents)
|
32
|
-
end
|
23
|
+
def write_file(file)
|
24
|
+
::File.write(path_of(file.name), file.contents)
|
33
25
|
end
|
34
26
|
|
35
27
|
def delete(name)
|
@@ -41,9 +33,33 @@ module Stashify
|
|
41
33
|
end
|
42
34
|
end
|
43
35
|
|
36
|
+
def files
|
37
|
+
Dir.entries(@path).grep_v(/^[.][.]?$/).map do |file_name|
|
38
|
+
find(::File.basename(file_name))
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
44
42
|
def ==(other)
|
45
43
|
@path == other.path
|
46
44
|
end
|
45
|
+
|
46
|
+
private
|
47
|
+
|
48
|
+
def directory?(name)
|
49
|
+
::File.directory?(path_of(name))
|
50
|
+
end
|
51
|
+
|
52
|
+
def file(name)
|
53
|
+
Stashify::File::Local.new(path_of(name))
|
54
|
+
end
|
55
|
+
|
56
|
+
def directory(name)
|
57
|
+
Stashify::Directory::Local.new(path_of(name))
|
58
|
+
end
|
59
|
+
|
60
|
+
def path_of(name)
|
61
|
+
::File.join(@path, name)
|
62
|
+
end
|
47
63
|
end
|
48
64
|
end
|
49
65
|
end
|
data/lib/stashify/directory.rb
CHANGED
@@ -2,10 +2,27 @@
|
|
2
2
|
|
3
3
|
module Stashify
|
4
4
|
class Directory
|
5
|
-
attr_reader :name
|
5
|
+
attr_reader :name, :files
|
6
6
|
|
7
|
-
def initialize(name:)
|
7
|
+
def initialize(name:, files: [])
|
8
8
|
@name = name
|
9
|
+
@files = files
|
10
|
+
end
|
11
|
+
|
12
|
+
def find(name)
|
13
|
+
if directory?(name)
|
14
|
+
directory(name)
|
15
|
+
else
|
16
|
+
file(name)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
def write(file)
|
21
|
+
if file.is_a?(Stashify::Directory)
|
22
|
+
write_directory(file)
|
23
|
+
else
|
24
|
+
write_file(file)
|
25
|
+
end
|
9
26
|
end
|
10
27
|
end
|
11
28
|
end
|
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: 1.0.2
|
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-25 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Provides an abstraction to various services (local filesystem, S3, etc)
|
14
14
|
email:
|
@@ -37,7 +37,6 @@ files:
|
|
37
37
|
- lib/stashify/local.rb
|
38
38
|
- lib/stashify/version.rb
|
39
39
|
- sig/stashify.rbs
|
40
|
-
- stashify.gemspec
|
41
40
|
homepage: https://github.com/Lambda-Null/stashify
|
42
41
|
licenses:
|
43
42
|
- MIT
|
data/stashify.gemspec
DELETED
@@ -1,37 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require_relative "lib/stashify/version"
|
4
|
-
|
5
|
-
Gem::Specification.new do |spec|
|
6
|
-
spec.name = "stashify"
|
7
|
-
spec.version = Stashify::VERSION
|
8
|
-
spec.authors = ["Lambda Null"]
|
9
|
-
spec.email = ["lambda.null.42@gmail.com"]
|
10
|
-
|
11
|
-
spec.summary = "Common abstraction for storing files"
|
12
|
-
spec.description = "Provides an abstraction to various services (local filesystem, S3, etc)"
|
13
|
-
spec.homepage = "https://github.com/Lambda-Null/stashify"
|
14
|
-
spec.license = "MIT"
|
15
|
-
spec.required_ruby_version = ">= 2.6.0"
|
16
|
-
|
17
|
-
spec.metadata["homepage_uri"] = spec.homepage
|
18
|
-
spec.metadata["source_code_uri"] = spec.homepage
|
19
|
-
|
20
|
-
# Specify which files should be added to the gem when it is released.
|
21
|
-
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
22
|
-
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
23
|
-
`git ls-files -z`.split("\x0").reject do |f|
|
24
|
-
(f == __FILE__) || f.match(%r{\A(?:(?:test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
|
25
|
-
end
|
26
|
-
end
|
27
|
-
spec.bindir = "exe"
|
28
|
-
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
29
|
-
spec.require_paths = ["lib"]
|
30
|
-
|
31
|
-
# Uncomment to register a new dependency of your gem
|
32
|
-
# spec.add_dependency "example-gem", "~> 1.0"
|
33
|
-
|
34
|
-
# For more information and examples about making a new gem, checkout our
|
35
|
-
# guide at: https://bundler.io/guides/creating_gem.html
|
36
|
-
spec.metadata["rubygems_mfa_required"] = "true"
|
37
|
-
end
|