bootstrap_bux 0.3.4 → 0.3.5
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: 807f6a4980f7c78b12df03a31402e8598ecf5108c7edf3ec8ee1425afb93d5d7
|
4
|
+
data.tar.gz: 65d2804832d12f9028191fa7e0835f92ffb052b480ac82cf65227f282504ad02
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e4755c8bb0169d6179fc28a845c3ff2323045a47bcdb135d834a9e5d1d5bfcca2b9544573dddb0c540f34ea0cbfcae37b79ecdd7ad71aaaa8fe14aa0f021266e
|
7
|
+
data.tar.gz: aae1ffb46a0b461cb7d3a472132b6b0a6a19216ed65a4d0bfd1fe4710b36c96fe72886b63c9fc77f404fde03375e25a7c639b5206c2567ed972dc8422da5deb5
|
@@ -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 %>
|
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
|
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(
|
12
|
+
app.config.assets.precompile += %w( *.ico )
|
13
|
+
app.config.assets.precompile += %w( application.css )
|
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.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alison Furlong
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-03-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -108,7 +108,6 @@ extra_rdoc_files: []
|
|
108
108
|
files:
|
109
109
|
- README.md
|
110
110
|
- Rakefile
|
111
|
-
- app/assets/config/bootstrap_bux_manifest.js
|
112
111
|
- app/assets/images/bootstrap_bux/development.ico
|
113
112
|
- app/assets/images/bootstrap_bux/favicon.ico
|
114
113
|
- app/assets/images/bootstrap_bux/staging.ico
|
@@ -133,7 +132,7 @@ metadata:
|
|
133
132
|
homepage_uri: https://code.osu.edu/asctech/bootstrap_bux_gem
|
134
133
|
source_code_uri: https://code.osu.edu/asctech/bootstrap_bux_gem
|
135
134
|
changelog_uri: https://code.osu.edu/asctech/bootstrap_bux_gem/CHANGELOG.md
|
136
|
-
post_install_message:
|
135
|
+
post_install_message:
|
137
136
|
rdoc_options: []
|
138
137
|
require_paths:
|
139
138
|
- lib
|
@@ -150,8 +149,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
150
149
|
- !ruby/object:Gem::Version
|
151
150
|
version: '0'
|
152
151
|
requirements: []
|
153
|
-
rubygems_version: 3.
|
154
|
-
signing_key:
|
152
|
+
rubygems_version: 3.2.3
|
153
|
+
signing_key:
|
155
154
|
specification_version: 4
|
156
155
|
summary: Bootstrap + mini-Bux + Rails
|
157
156
|
test_files: []
|