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: e9c33de68408a8fcb1f192f07de25f35e63981abd2e551291dcac1260a0b3386
4
- data.tar.gz: 71605bf8428973eb19bebabde0b73bc767e11c2ec879258ec4dfce25d46a0ef3
3
+ metadata.gz: 2c174327770ffcf89ac2d48b739680f6c236067c67eddc52a31bbc3c6c581b74
4
+ data.tar.gz: fd348f372176e1ca4af90b9f42eee53aecc8be9efe95939137d829f405f4f3e0
5
5
  SHA512:
6
- metadata.gz: 9ebfe3a90e15a794da11dbe053a0ffbd43cdb6088e5a4a67037ea710d2e6720e5d208ee136a9201023e0c1d6eae5e85da90cc82768ac7ac31cb2e30c93671e98
7
- data.tar.gz: bfa1f6476ff9d74e70980dd757e4e6d4bece86a5169dad21ef450918e7865ff7f96152eedfcb81b6e8a20fa3d2f16d34a545026d1a032a6e7790deb908c68621
6
+ metadata.gz: c5fffccf1407896534aa0152d9fecea53dd24e76ea4b38a5cca6850aba087b1f9f82817166eaec2ab64dea48bb8feaf248fd5756c2122b07cc2f2e40949ee9b6
7
+ data.tar.gz: 542ae58ff5265ebd7a2d38c632a110758a25050ed55b09d0ab435b806cf89a43d50c8945a1a1b2958badbdd98902d99370eb1636027298e8b7b30b90ee70b1cc
@@ -0,0 +1,2 @@
1
+ //= link_tree ../images
2
+ //= link_tree ../stylesheets
@@ -1,5 +1,5 @@
1
- <% if Rails.env.in?(%w[development staging]) && asset_path("#{Rails.env}.ico").present? %>
2
- <%= favicon_link_tag asset_path("#{Rails.env}.ico") %>
3
- <% elsif asset_path("favicon.ico").present? %>
4
- <%= favicon_link_tag asset_path("favicon.ico") %>
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 %>
@@ -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( development.ico staging.ico favicon.ico )
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module BootstrapBux
4
- VERSION = "0.3.2"
4
+ VERSION = "0.3.4"
5
5
  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.2
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-18 00:00:00.000000000 Z
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