stashify 1.0 → 1.0.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/Gemfile.lock +1 -1
- data/lib/stashify/directory/local.rb +19 -11
- data/lib/stashify/directory.rb +8 -0
- 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: 9469fa1d661bcb4852b3eb11964c6838dc3fd26185d3847f0fc5186fce4610d8
|
4
|
+
data.tar.gz: 6f4ea369267528677dd3a2ed2800bab46348733894020a4a74ee75704c8a3db2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '078f0add9fe974e70e6b53e379ec9d183794414db193df3e0c225ddae3087f86296a7620f5b48e38654182e63ab941c9532a5cc46bbdee54cf89782de40db5e2'
|
7
|
+
data.tar.gz: 0d6845f6dbc623843be2e4fa6441635eb0281dedb1bf73ba72a331eded002dd485a693bd141a98a87decbba7f4f48b4918c6b53b9ed20f77306763f39638af68
|
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,16 +13,6 @@ module Stashify
|
|
13
13
|
super(name: ::File.basename(path))
|
14
14
|
end
|
15
15
|
|
16
|
-
def find(name)
|
17
|
-
path = ::File.join(@path, name)
|
18
|
-
if ::File.directory?(path)
|
19
|
-
Stashify::Directory::Local.new(path)
|
20
|
-
else
|
21
|
-
file = ::File.read(path)
|
22
|
-
Stashify::File.new(name: name, contents: file)
|
23
|
-
end
|
24
|
-
end
|
25
|
-
|
26
16
|
def write(file)
|
27
17
|
path = ::File.join(@path, file.name)
|
28
18
|
if file.is_a?(Stashify::Directory)
|
@@ -44,6 +34,24 @@ module Stashify
|
|
44
34
|
def ==(other)
|
45
35
|
@path == other.path
|
46
36
|
end
|
37
|
+
|
38
|
+
private
|
39
|
+
|
40
|
+
def directory?(name)
|
41
|
+
::File.directory?(path_of(name))
|
42
|
+
end
|
43
|
+
|
44
|
+
def file(name)
|
45
|
+
Stashify::File::Local.new(path_of(name))
|
46
|
+
end
|
47
|
+
|
48
|
+
def directory(name)
|
49
|
+
Stashify::Directory::Local.new(path_of(name))
|
50
|
+
end
|
51
|
+
|
52
|
+
def path_of(name)
|
53
|
+
::File.join(@path, name)
|
54
|
+
end
|
47
55
|
end
|
48
56
|
end
|
49
57
|
end
|
data/lib/stashify/directory.rb
CHANGED
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.1
|
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
|