box_active_storage 0.1.1 → 0.1.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/box_active_storage.gemspec +40 -0
- data/lib/box_active_storage/version.rb +1 -1
- data/lib/box_active_storage.rb +2 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6e7237db7301f78334b69940318fdac234833f62ecef9865be3cea29b708451d
|
|
4
|
+
data.tar.gz: 05c86cfc1f14ca30b37a243450e011b032997cdeb5da5f871e2ad4f8b801318a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 690f942551e8d42be2afc340a6b3d50c1bf2b6f81b2b79be3465d1863cdaf224b5e8de1228049bf745adb7173c37dba03da912f56a6b264281db6175944b1d15
|
|
7
|
+
data.tar.gz: 286aab942b97fd6b5fcd2cfcaaecfbe7f6cc3e6c018c15bb10ed65e830b68f31409521ef50d251b199d257882da34528630db0bf4daedd4be8cd4fd2f770da6e
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require_relative "lib/box_active_storage/version"
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |spec|
|
|
6
|
+
spec.name = "box_active_storage"
|
|
7
|
+
spec.version = BoxActiveStorage::VERSION
|
|
8
|
+
spec.authors = ["JoelGamer"]
|
|
9
|
+
spec.email = ["gtheodoro@rescocompany.com"]
|
|
10
|
+
|
|
11
|
+
spec.summary = "This Gem is for integrating Box.com with ActiveStorage."
|
|
12
|
+
# spec.description = "TODO: Write a longer description or delete this line."
|
|
13
|
+
spec.homepage = "https://github.com/RESCO-Company/box_active_storage"
|
|
14
|
+
spec.license = "MIT"
|
|
15
|
+
spec.required_ruby_version = ">= 2.6.0"
|
|
16
|
+
|
|
17
|
+
# spec.metadata["allowed_push_host"] = "TODO: Set to your gem server 'https://example.com'"
|
|
18
|
+
|
|
19
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
|
20
|
+
spec.metadata["source_code_uri"] = "https://github.com/RESCO-Company/box_active_storage"
|
|
21
|
+
# spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
|
|
22
|
+
|
|
23
|
+
# Specify which files should be added to the gem when it is released.
|
|
24
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
|
25
|
+
spec.files = Dir.chdir(__dir__) do
|
|
26
|
+
`git ls-files -z`.split("\x0").reject do |f|
|
|
27
|
+
(File.expand_path(f) == __FILE__) ||
|
|
28
|
+
f.start_with?(*%w[bin/ test/ spec/ features/ .git .github appveyor Gemfile])
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
spec.bindir = "exe"
|
|
32
|
+
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
|
33
|
+
spec.require_paths = ["lib"]
|
|
34
|
+
|
|
35
|
+
# Uncomment to register a new dependency of your gem
|
|
36
|
+
spec.add_dependency "httparty", '~> 0.22'
|
|
37
|
+
|
|
38
|
+
# For more information and examples about making a new gem, check out our
|
|
39
|
+
# guide at: https://bundler.io/guides/creating_gem.html
|
|
40
|
+
end
|
data/lib/box_active_storage.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: box_active_storage
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- JoelGamer
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-09-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: httparty
|
|
@@ -35,6 +35,7 @@ files:
|
|
|
35
35
|
- ".rubocop.yml"
|
|
36
36
|
- README.md
|
|
37
37
|
- Rakefile
|
|
38
|
+
- box_active_storage.gemspec
|
|
38
39
|
- lib/active_storage/service/box_service.rb
|
|
39
40
|
- lib/box_active_storage.rb
|
|
40
41
|
- lib/box_active_storage/file.rb
|