bootstrap_bux 0.1.9 → 0.1.11
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/README.md +2 -2
- data/app/views/bootstrap_bux/_osu_footer_dark.html.erb +8 -8
- data/lib/bootstrap_bux/engine.rb +1 -0
- data/lib/bootstrap_bux/version.rb +1 -1
- data/lib/bootstrap_bux.rb +13 -15
- metadata +16 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 35f2423686eacaaa36405d42581f63b662465f17131498bb9a001e5f9ae73635
|
4
|
+
data.tar.gz: b21a00a8740c6fba578e3b2e7c75caa2e8054d818240a7da772b8f124a982747
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2e56324b46b9f38777cda86588b41843e0cc4df1828db67a1c047bdf58d89e59e32a602c5fe7a5729c380004dc59bc38c6341d942c58fd4f9ecf8ef0bfc4d958
|
7
|
+
data.tar.gz: 4787dc6e4caefbd4ccd062dbac891a6cb818d9832927fb3bc900bf3fef26d6f42a1e2558b22e71f942964e6bd8cab33b8dba6bd874a47764091cdbf758bae65f
|
data/README.md
CHANGED
@@ -8,7 +8,7 @@ To use this gem, you must first add Bootstrap (v. 5 or later) to your Gemfile, f
|
|
8
8
|
|
9
9
|
Add the bootstrap_bux gem to the application's Gemfile:
|
10
10
|
|
11
|
-
gem bootstrap_bux
|
11
|
+
gem 'bootstrap_bux'
|
12
12
|
|
13
13
|
and then
|
14
14
|
|
@@ -43,7 +43,7 @@ Within your Rails application, rendering headers and footers is simple.
|
|
43
43
|
|
44
44
|
In your CSS/SCSS file:
|
45
45
|
|
46
|
-
@import
|
46
|
+
@import 'bootstrap_bux/application';
|
47
47
|
|
48
48
|
In your view (most likely in the application layout):
|
49
49
|
|
@@ -80,14 +80,14 @@
|
|
80
80
|
</div>
|
81
81
|
<% end %>
|
82
82
|
<div class="bux-footer__fine-print">
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
83
|
+
<div class="bux-footer__ada">
|
84
|
+
If you have a disability
|
85
|
+
and experience difficulty accessing this content,
|
86
|
+
please contact the Digital Accessibility Center
|
87
|
+
for assistance at <a class="bux-link" href="mailto:accessibility@osu.edu">
|
88
|
+
accessibility@osu.edu</a> or <a class="bux-link" href="tel:614-292-1760">614-292-1760</a>.
|
89
|
+
</div>
|
90
|
+
<div class="bux-footer__links">
|
91
91
|
<p class="bux_footer__link"><a class="bux-link"
|
92
92
|
href="https://go.osu.edu/privacy">Privacy Statement</a></p>
|
93
93
|
<p class="bux_footer__link"><a class="bux-link"
|
data/lib/bootstrap_bux/engine.rb
CHANGED
data/lib/bootstrap_bux.rb
CHANGED
@@ -24,20 +24,18 @@ module BootstrapBux
|
|
24
24
|
attr_accessor :department_name, :building_room, :address, :email, :phone, :fax, :facebook, :twitter, :instagram,
|
25
25
|
:linkedin, :youtube, :tiktok
|
26
26
|
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
@tiktok = nil
|
41
|
-
end
|
27
|
+
@department_name = "My Office"
|
28
|
+
@building_room = "100 Building Name"
|
29
|
+
@address = "1 Oval Mall"
|
30
|
+
@email = "email@osu.edu"
|
31
|
+
@phone = "614-292-OHIO"
|
32
|
+
@fax = "614-555-5555"
|
33
|
+
|
34
|
+
@facebook = nil
|
35
|
+
@twitter = nil
|
36
|
+
@instagram = nil
|
37
|
+
@linkedin = nil
|
38
|
+
@youtube = nil
|
39
|
+
@tiktok = nil
|
42
40
|
end
|
43
41
|
end
|
metadata
CHANGED
@@ -1,35 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bootstrap_bux
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.11
|
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: 2024-06-
|
11
|
+
date: 2024-06-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "~>"
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: '7.0'
|
20
17
|
- - ">="
|
21
18
|
- !ruby/object:Gem::Version
|
22
19
|
version: 7.0.0
|
20
|
+
- - "~>"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '7.0'
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
|
-
- - "~>"
|
28
|
-
- !ruby/object:Gem::Version
|
29
|
-
version: '7.0'
|
30
27
|
- - ">="
|
31
28
|
- !ruby/object:Gem::Version
|
32
29
|
version: 7.0.0
|
30
|
+
- - "~>"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '7.0'
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: sprockets-rails
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -120,14 +120,14 @@ files:
|
|
120
120
|
- lib/bootstrap_bux.rb
|
121
121
|
- lib/bootstrap_bux/engine.rb
|
122
122
|
- lib/bootstrap_bux/version.rb
|
123
|
-
homepage: https://code.osu.edu/asctech/
|
123
|
+
homepage: https://code.osu.edu/asctech/bootstrap_bux_gem
|
124
124
|
licenses:
|
125
125
|
- MIT
|
126
126
|
metadata:
|
127
|
-
homepage_uri: https://code.osu.edu/asctech/
|
128
|
-
source_code_uri: https://code.osu.edu/asctech/
|
129
|
-
changelog_uri: https://code.osu.edu/asctech/
|
130
|
-
post_install_message:
|
127
|
+
homepage_uri: https://code.osu.edu/asctech/bootstrap_bux_gem
|
128
|
+
source_code_uri: https://code.osu.edu/asctech/bootstrap_bux_gem
|
129
|
+
changelog_uri: https://code.osu.edu/asctech/bootstrap_bux_gem/CHANGELOG.md
|
130
|
+
post_install_message:
|
131
131
|
rdoc_options: []
|
132
132
|
require_paths:
|
133
133
|
- lib
|
@@ -144,8 +144,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
144
144
|
- !ruby/object:Gem::Version
|
145
145
|
version: '0'
|
146
146
|
requirements: []
|
147
|
-
rubygems_version: 3.
|
148
|
-
signing_key:
|
147
|
+
rubygems_version: 3.0.3.1
|
148
|
+
signing_key:
|
149
149
|
specification_version: 4
|
150
150
|
summary: Bootstrap + mini-Bux + Rails
|
151
151
|
test_files: []
|