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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 85c07457d4573ee9f0e352cc216de2c43eaf4ec61447b4ce174c2b7d76b0d09e
4
- data.tar.gz: 7375e1bd71e6e7d0d04f11666ac420fb7a2f88c51819b950b7026c1fdd5d3955
3
+ metadata.gz: 6e7237db7301f78334b69940318fdac234833f62ecef9865be3cea29b708451d
4
+ data.tar.gz: 05c86cfc1f14ca30b37a243450e011b032997cdeb5da5f871e2ad4f8b801318a
5
5
  SHA512:
6
- metadata.gz: 9291f0cf3d375af718d8fc21d72d411a5e32fe751d14acd9c163b569ab0ad3323d9526500937bc27ba8a1729dca629aa7c84ff92fd8d098a2a2efcead5d6f455
7
- data.tar.gz: fb6e92cca8aaa85c13c3619e125212c7463a33fcdee474261f3853ef531738ae7a0606a632fbc52893cc12815d49ec7683d5caee6c19247e7fd7f9fb1702ae93
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module BoxActiveStorage
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.2"
5
5
  end
@@ -1,5 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require 'httparty'
4
+
3
5
  require_relative "box_active_storage/file"
4
6
  require_relative "box_active_storage/file_shared_link"
5
7
  require_relative "box_active_storage/folder"
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.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-07-25 00:00:00.000000000 Z
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