bootstrap_bux 0.3.2 → 0.3.4
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2c174327770ffcf89ac2d48b739680f6c236067c67eddc52a31bbc3c6c581b74
|
4
|
+
data.tar.gz: fd348f372176e1ca4af90b9f42eee53aecc8be9efe95939137d829f405f4f3e0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c5fffccf1407896534aa0152d9fecea53dd24e76ea4b38a5cca6850aba087b1f9f82817166eaec2ab64dea48bb8feaf248fd5756c2122b07cc2f2e40949ee9b6
|
7
|
+
data.tar.gz: 542ae58ff5265ebd7a2d38c632a110758a25050ed55b09d0ab435b806cf89a43d50c8945a1a1b2958badbdd98902d99370eb1636027298e8b7b30b90ee70b1cc
|
@@ -1,5 +1,5 @@
|
|
1
|
-
<% if Rails.env.in?(%w[development staging]) &&
|
2
|
-
<%= favicon_link_tag
|
3
|
-
<% elsif asset_path(
|
4
|
-
<%= favicon_link_tag
|
1
|
+
<% if Rails.env.in?(%w[development staging]) && image_path('staging.ico').present? %>
|
2
|
+
<%= favicon_link_tag image_path('staging.ico') %>
|
3
|
+
<% elsif asset_path('favicon.ico').present? %>
|
4
|
+
<%= favicon_link_tag image_path('favicon.ico') %>
|
5
5
|
<% end %>
|
data/lib/bootstrap_bux/engine.rb
CHANGED
@@ -5,12 +5,12 @@ module BootstrapBux
|
|
5
5
|
class Engine < ::Rails::Engine
|
6
6
|
isolate_namespace BootstrapBux
|
7
7
|
initializer 'bootstrap_bux.assets' do |app|
|
8
|
+
app.config.assets.paths << root.join('app', 'assets', 'config').to_s
|
8
9
|
app.config.assets.paths << root.join('app', 'assets', 'images', 'bootstrap_bux').to_s
|
9
10
|
app.config.assets.paths << root.join('app', 'assets', 'stylesheets', 'bootstrap_bux').to_s
|
10
11
|
end
|
11
12
|
initializer 'bootstrap_bux.assets.precompile' do |app|
|
12
|
-
app.config.assets.precompile += %w(
|
13
|
-
app.config.assets.precompile += %w( application.css )
|
13
|
+
app.config.assets.precompile += %w( config/bootstrap_bux_manifest.js )
|
14
14
|
end
|
15
15
|
end
|
16
16
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bootstrap_bux
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alison Furlong
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-12-
|
11
|
+
date: 2024-12-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -108,6 +108,7 @@ extra_rdoc_files: []
|
|
108
108
|
files:
|
109
109
|
- README.md
|
110
110
|
- Rakefile
|
111
|
+
- app/assets/config/bootstrap_bux_manifest.js
|
111
112
|
- app/assets/images/bootstrap_bux/development.ico
|
112
113
|
- app/assets/images/bootstrap_bux/favicon.ico
|
113
114
|
- app/assets/images/bootstrap_bux/staging.ico
|