plug 0.1.26 → 0.1.27
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/app/assets/config/plug_manifest.js +1 -0
- data/app/views/layouts/plug/application.html.haml +0 -1
- data/app/views/plug/shared/_head.html.haml +1 -0
- data/lib/plug/engine.rb +6 -0
- data/lib/plug/version.rb +1 -1
- metadata +3 -3
- /data/app/assets/images/{favicon.png → plug/favicon.png} +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3b24b659f1fef423ad79f8327fcc139c2fe76855e46cc1891f058e90d0a3010f
|
|
4
|
+
data.tar.gz: 73d8bffaa03bf0e913ade43e26d1eefd57ccba71d22bcdd23f65caeca4424d05
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 28ff4f598b31181a73247d0448ce972d7d7dc0afef95417e10a7f8b922d7444e1e0c897a9aaed253ab73aa1fe347c355f82f0cc9c234368a85ca0f9cb6de5f8e
|
|
7
|
+
data.tar.gz: 46e9dda363fa11bda56f4496e4b212a8c61293e2f0cf9b31613b940c32a744c8a4bf6e3d2968319ffe539a1c42c83d1059cac27f5960891beebd6ec8aa3a2a2c
|
data/lib/plug/engine.rb
CHANGED
|
@@ -8,6 +8,12 @@ module Plug
|
|
|
8
8
|
class Engine < ::Rails::Engine
|
|
9
9
|
isolate_namespace Plug
|
|
10
10
|
|
|
11
|
+
initializer 'plug.assets.precompile' do |app|
|
|
12
|
+
app.config.assets.precompile += %w[
|
|
13
|
+
plug/application.js plug/application.css plug/favicon.png
|
|
14
|
+
]
|
|
15
|
+
end
|
|
16
|
+
|
|
11
17
|
config.generators do |g|
|
|
12
18
|
g.test_framework :rspec
|
|
13
19
|
g.fixture_replacement :factory_bot
|
data/lib/plug/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: plug
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.27
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Boost
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2023-09-
|
|
12
|
+
date: 2023-09-19 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: aasm
|
|
@@ -190,7 +190,7 @@ files:
|
|
|
190
190
|
- README.md
|
|
191
191
|
- Rakefile
|
|
192
192
|
- app/assets/config/plug_manifest.js
|
|
193
|
-
- app/assets/images/favicon.png
|
|
193
|
+
- app/assets/images/plug/favicon.png
|
|
194
194
|
- app/assets/javascripts/plug/application.js
|
|
195
195
|
- app/assets/javascripts/plug/trix-core.js
|
|
196
196
|
- app/assets/stylesheets/plug/_settings.scss
|
|
File without changes
|