bootstrap_bux 0.3.4 → 0.3.6

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: 2c174327770ffcf89ac2d48b739680f6c236067c67eddc52a31bbc3c6c581b74
4
- data.tar.gz: fd348f372176e1ca4af90b9f42eee53aecc8be9efe95939137d829f405f4f3e0
3
+ metadata.gz: c304e782efc347200de8184bbac45ccf8b13f2b224f75e4e4d0ad8d1957bc50a
4
+ data.tar.gz: 1b7a5376e2486c276714ea72f3397986bdbeb0c2868b06b5229dba2246bad7ab
5
5
  SHA512:
6
- metadata.gz: c5fffccf1407896534aa0152d9fecea53dd24e76ea4b38a5cca6850aba087b1f9f82817166eaec2ab64dea48bb8feaf248fd5756c2122b07cc2f2e40949ee9b6
7
- data.tar.gz: 542ae58ff5265ebd7a2d38c632a110758a25050ed55b09d0ab435b806cf89a43d50c8945a1a1b2958badbdd98902d99370eb1636027298e8b7b30b90ee70b1cc
6
+ metadata.gz: a6b49c2a578970e79af98982cb1276d5dc51e6d754e2d0553d3337d9289670db9853f352ec47f5663fd386b5ff368b4da14aa8fcec54deab53c1effd0da697e9
7
+ data.tar.gz: 6db4a8c39fc5b4e91f714da272fea9a637940a963cc905a7f9dca4c93cba33c184816cfea171cad7e4f3dd88ae7df5bc7c083940634f1a74e2f0a5acd8bb7176
@@ -1,5 +1,3 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 25.4.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
1
  <svg role="img" aria-label="The Ohio State University" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
2
  viewBox="0 0 576 90" xml:space="preserve">
5
3
  <g>
@@ -102,7 +102,7 @@
102
102
  <% unless BootstrapBux.configuration.signin_link.blank? || BootstrapBux.configuration.signout_link.blank? %>
103
103
  <p class="bux_footer__link">
104
104
  <% if signed_in? %>
105
- <%= link_to('Log Out', BootstrapBux.configuration.signout_link, class: 'bux-link btn btn-link', 'data-method'=> :delete) %>
105
+ <%= link_to('Log Out', BootstrapBux.configuration.signout_link, class: 'bux-link btn btn-link', 'data-turbo-method'=> :delete) %>
106
106
  <% else %>
107
107
  <%= button_to('Log In', BootstrapBux.configuration.signin_link, method: :post, class: 'bux-link btn btn-link', data: { turbo: false }) %>
108
108
  <% 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
9
8
  app.config.assets.paths << root.join('app', 'assets', 'images', 'bootstrap_bux').to_s
10
9
  app.config.assets.paths << root.join('app', 'assets', 'stylesheets', 'bootstrap_bux').to_s
11
10
  end
12
11
  initializer 'bootstrap_bux.assets.precompile' do |app|
13
- app.config.assets.precompile += %w( config/bootstrap_bux_manifest.js )
12
+ app.config.assets.precompile += %w( *.ico )
13
+ app.config.assets.precompile += %w( application.css )
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.4"
4
+ VERSION = "0.3.6"
5
5
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bootstrap_bux
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.4
4
+ version: 0.3.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alison Furlong
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2024-12-19 00:00:00.000000000 Z
10
+ date: 2025-07-01 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: rails
@@ -108,7 +107,6 @@ extra_rdoc_files: []
108
107
  files:
109
108
  - README.md
110
109
  - Rakefile
111
- - app/assets/config/bootstrap_bux_manifest.js
112
110
  - app/assets/images/bootstrap_bux/development.ico
113
111
  - app/assets/images/bootstrap_bux/favicon.ico
114
112
  - app/assets/images/bootstrap_bux/staging.ico
@@ -133,7 +131,6 @@ metadata:
133
131
  homepage_uri: https://code.osu.edu/asctech/bootstrap_bux_gem
134
132
  source_code_uri: https://code.osu.edu/asctech/bootstrap_bux_gem
135
133
  changelog_uri: https://code.osu.edu/asctech/bootstrap_bux_gem/CHANGELOG.md
136
- post_install_message:
137
134
  rdoc_options: []
138
135
  require_paths:
139
136
  - lib
@@ -150,8 +147,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
150
147
  - !ruby/object:Gem::Version
151
148
  version: '0'
152
149
  requirements: []
153
- rubygems_version: 3.0.3.1
154
- signing_key:
150
+ rubygems_version: 3.6.2
155
151
  specification_version: 4
156
152
  summary: Bootstrap + mini-Bux + Rails
157
153
  test_files: []
@@ -1,2 +0,0 @@
1
- //= link_tree ../images
2
- //= link_tree ../stylesheets