m365_active_storage 1.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 +7 -0
- data/.ruby-version +1 -0
- data/CHANGELOG.md +5 -0
- data/LICENSE.txt +19 -0
- data/README.md +82 -0
- data/Rakefile +32 -0
- data/config/routes.rb +5 -0
- data/config/storage.yml +10 -0
- data/lib/active_storage/authentication.rb +189 -0
- data/lib/active_storage/configuration.rb +155 -0
- data/lib/active_storage/http.rb +215 -0
- data/lib/active_storage/service/sharepoint_service.rb +415 -0
- data/lib/generators/m365_active_storage/check/check_generator.rb +53 -0
- data/lib/generators/m365_active_storage/migrate/migrate_generator.rb +40 -0
- data/lib/m365_active_storage/controllers/blobs_controller.rb +132 -0
- data/lib/m365_active_storage/files.rb +59 -0
- data/lib/m365_active_storage/m365.rb +161 -0
- data/lib/m365_active_storage/pending_delete.rb +77 -0
- data/lib/m365_active_storage/railtie.rb +65 -0
- data/lib/m365_active_storage/version.rb +6 -0
- data/lib/m365_active_storage.rb +62 -0
- data/node_modules/.yarn-integrity +10 -0
- data/sig/m365_active_storage.rbs +4 -0
- data/yarn.lock +4 -0
- metadata +83 -0
metadata
ADDED
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: m365_active_storage
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Óscar León
|
|
8
|
+
bindir: exe
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies: []
|
|
12
|
+
description: Integration gem for Rails Active Storage to use Microsoft 365 (SharePoint)
|
|
13
|
+
as a storage backend. Provides seamless OAuth2 authentication and Microsoft Graph
|
|
14
|
+
API integration for file management.
|
|
15
|
+
email:
|
|
16
|
+
- oscar.leon@oei.int
|
|
17
|
+
executables: []
|
|
18
|
+
extensions: []
|
|
19
|
+
extra_rdoc_files:
|
|
20
|
+
- CHANGELOG.md
|
|
21
|
+
- LICENSE.txt
|
|
22
|
+
- README.md
|
|
23
|
+
files:
|
|
24
|
+
- ".ruby-version"
|
|
25
|
+
- CHANGELOG.md
|
|
26
|
+
- LICENSE.txt
|
|
27
|
+
- README.md
|
|
28
|
+
- Rakefile
|
|
29
|
+
- config/routes.rb
|
|
30
|
+
- config/storage.yml
|
|
31
|
+
- lib/active_storage/authentication.rb
|
|
32
|
+
- lib/active_storage/configuration.rb
|
|
33
|
+
- lib/active_storage/http.rb
|
|
34
|
+
- lib/active_storage/service/sharepoint_service.rb
|
|
35
|
+
- lib/generators/m365_active_storage/check/check_generator.rb
|
|
36
|
+
- lib/generators/m365_active_storage/migrate/migrate_generator.rb
|
|
37
|
+
- lib/m365_active_storage.rb
|
|
38
|
+
- lib/m365_active_storage/controllers/blobs_controller.rb
|
|
39
|
+
- lib/m365_active_storage/files.rb
|
|
40
|
+
- lib/m365_active_storage/m365.rb
|
|
41
|
+
- lib/m365_active_storage/pending_delete.rb
|
|
42
|
+
- lib/m365_active_storage/railtie.rb
|
|
43
|
+
- lib/m365_active_storage/version.rb
|
|
44
|
+
- node_modules/.yarn-integrity
|
|
45
|
+
- sig/m365_active_storage.rbs
|
|
46
|
+
- yarn.lock
|
|
47
|
+
homepage: https://github.com/oei-int/m365-active-storage
|
|
48
|
+
licenses:
|
|
49
|
+
- GPL-3.0
|
|
50
|
+
metadata:
|
|
51
|
+
allowed_push_host: https://rubygems.org
|
|
52
|
+
homepage_uri: https://github.com/oei-int/m365-active-storage
|
|
53
|
+
source_code_uri: https://github.com/oei-int/m365-active-storage
|
|
54
|
+
changelog_uri: https://github.com/oei-int/m365-active-storage/CHANGELOG.md
|
|
55
|
+
documentation_uri: https://rubydoc.info/gems/m365_active_storage
|
|
56
|
+
bug_tracker_uri: https://github.com/oei-int/m365-active-storage/issues
|
|
57
|
+
rdoc_options:
|
|
58
|
+
- "--title"
|
|
59
|
+
- M365 Active Storage - SharePoint Storage for Rails
|
|
60
|
+
- "--main"
|
|
61
|
+
- README.md
|
|
62
|
+
- "--exclude"
|
|
63
|
+
- test
|
|
64
|
+
- "--markup"
|
|
65
|
+
- markdown
|
|
66
|
+
- "--line-numbers"
|
|
67
|
+
require_paths:
|
|
68
|
+
- lib
|
|
69
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
70
|
+
requirements:
|
|
71
|
+
- - ">="
|
|
72
|
+
- !ruby/object:Gem::Version
|
|
73
|
+
version: 3.2.0
|
|
74
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
|
+
requirements:
|
|
76
|
+
- - ">="
|
|
77
|
+
- !ruby/object:Gem::Version
|
|
78
|
+
version: '0'
|
|
79
|
+
requirements: []
|
|
80
|
+
rubygems_version: 4.0.4
|
|
81
|
+
specification_version: 4
|
|
82
|
+
summary: Gem to use Microsoft 365 as a storage service for Rails Active Storage.
|
|
83
|
+
test_files: []
|