effective_assets 1.11.1 → 1.11.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/MIT-LICENSE +1 -1
- data/app/assets/config/effective_assets_manifest.js +2 -0
- data/lib/effective_assets/engine.rb +4 -3
- data/lib/effective_assets/version.rb +1 -1
- metadata +7 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4704539ad2f751c0557b6484993d5a7b1eec4f395b14850fb98555d50a3487a9
|
4
|
+
data.tar.gz: a943ad172052ae93362088e32df9c29fb77e07850bec9314291df85f13af4a26
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4a56ff3ae576698f4809cb3c4eefdf04b0e228eadb824fd5787d219a25c64b747fbb8181b9e4f7885897e38cfe0235fd5de7feabf6ce01e9f0cb1a3d8863f266
|
7
|
+
data.tar.gz: 7800e3fe6cb6915866ca2539e79b4e6108e4e76d7d01594beb3da180110b1f7db3680cfa2e3d73aa8ef5fd149925e9dc13e0cd062324477b6438e94fef235df3
|
data/MIT-LICENSE
CHANGED
@@ -2,8 +2,6 @@ module EffectiveAssets
|
|
2
2
|
class Engine < ::Rails::Engine
|
3
3
|
engine_name 'effective_assets'
|
4
4
|
|
5
|
-
config.autoload_paths += Dir["#{config.root}/app/models/**/", "#{config.root}/app/jobs/**/"]
|
6
|
-
|
7
5
|
# Include acts_as_addressable concern and allow any ActiveRecord object to call it
|
8
6
|
initializer 'effective_assets.active_record' do |app|
|
9
7
|
ActiveSupport.on_load :active_record do
|
@@ -23,7 +21,10 @@ module EffectiveAssets
|
|
23
21
|
end
|
24
22
|
|
25
23
|
initializer "effective_assets.append_precompiled_assets" do |app|
|
26
|
-
Rails.application.config.assets.precompile += [
|
24
|
+
Rails.application.config.assets.precompile += [
|
25
|
+
'effective_assets_manifest.js', 'effective_assets.js', 'effective_assets_iframe.js', 'effective_assets_iframe.css',
|
26
|
+
'effective_assets/*', 'mime-types/*'
|
27
|
+
]
|
27
28
|
end
|
28
29
|
|
29
30
|
# ActiveAdmin (optional)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: effective_assets
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.11.
|
4
|
+
version: 1.11.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Code and Effect
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-11-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -133,6 +133,7 @@ files:
|
|
133
133
|
- MIT-LICENSE
|
134
134
|
- README.md
|
135
135
|
- active_admin/effective_assets.rb
|
136
|
+
- app/assets/config/effective_assets_manifest.js
|
136
137
|
- app/assets/images/effective_assets/icon_close.png
|
137
138
|
- app/assets/images/effective_assets/spinner.gif
|
138
139
|
- app/assets/images/mime-types/excel.jpg
|
@@ -206,7 +207,7 @@ homepage: https://github.com/code-and-effect/effective_assets
|
|
206
207
|
licenses:
|
207
208
|
- MIT
|
208
209
|
metadata: {}
|
209
|
-
post_install_message:
|
210
|
+
post_install_message:
|
210
211
|
rdoc_options: []
|
211
212
|
require_paths:
|
212
213
|
- lib
|
@@ -221,8 +222,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
221
222
|
- !ruby/object:Gem::Version
|
222
223
|
version: '0'
|
223
224
|
requirements: []
|
224
|
-
rubygems_version: 3.
|
225
|
-
signing_key:
|
225
|
+
rubygems_version: 3.1.2
|
226
|
+
signing_key:
|
226
227
|
specification_version: 4
|
227
228
|
summary: Upload images and files directly to AWS S3 with a custom form input then
|
228
229
|
seamlessly organize and attach them to any ActiveRecord object.
|