bootstrap_bux 0.1.10 → 0.1.12

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: 00fe80df3ffaed66f724f4780c6351bfa193f5f1de33621099572353d588e92c
4
- data.tar.gz: bc3bb3c0b313f990f002c2e50530b1a13a7865d36d545f08ec8e7cdbf11b1b52
3
+ metadata.gz: 9e77a08340e3f6ef15bd02ee1d89689127df3b249217e7989083a047ab835396
4
+ data.tar.gz: d46a80d8ff5d5472ab3b776bc909b809fdc0e7a6606f8b00f008ecfd1c0a8e68
5
5
  SHA512:
6
- metadata.gz: ed3356497c98383fc6bbce40a862e67ad5137f1af54df7d1c002daf4305bc23ed6a4182ff08b81daefc9f637db83fe51d40a9390c4470ba773c447790072e895
7
- data.tar.gz: 21b1142890164e4421badaad431959bbb5f3e5a470654a48381996d29221a35e36b8c76cae6798016c99a667664254c07cca5f1751049d929bc028bef3abe974
6
+ metadata.gz: eb6d4e92c786dca34da89774be7681d7b6421974dc298fe070db8f541f8ba2598880bad4add5e3d2d5b5a4d3cdb9e67335ac1c0c540b3e4b4eb3f52400a02cd1
7
+ data.tar.gz: ffe7b16e806755109f702d61b27cdb5ae4fbcf68261ba98b6bbc47749f87fd440e70a0e4529320b1dd21c8efd28975c49f87b234a6c2cad8995019546658dbb8
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 "bootstrap_bux/application";
46
+ @import 'bootstrap_bux/application';
47
47
 
48
48
  In your view (most likely in the application layout):
49
49
 
@@ -51,15 +51,15 @@ In your view (most likely in the application layout):
51
51
 
52
52
  and
53
53
 
54
- = render 'bootstrap_bux/osu_header_dark'
54
+ = render 'bootstrap_bux/osu_footer_dark'
55
55
 
56
56
  or
57
57
 
58
- = render 'bootstrap_bux/osu_header_light'
58
+ = render 'bootstrap_bux/osu_footer_light'
59
59
 
60
60
  or
61
61
 
62
- = render 'bootstrap_bux/osu_header_white'
62
+ = render 'bootstrap_bux/osu_footer_white'
63
63
 
64
64
  ## Development
65
65
 
@@ -80,14 +80,14 @@
80
80
  </div>
81
81
  <% end %>
82
82
  <div class="bux-footer__fine-print">
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:accessibilityBootstrapBux.configuration.osu.edu">
88
- accessibilityBootstrapBux.configuration.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">
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"
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module BootstrapBux
4
+ # make css assets available to any app using the gem
4
5
  class Engine < ::Rails::Engine
5
6
  isolate_namespace BootstrapBux
6
7
  # initializer 'bootstrap_bux.assets' do |app|
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module BootstrapBux
4
- VERSION = "0.1.10"
4
+ VERSION = "0.1.12"
5
5
  end
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
- def initialize
28
- @department_name = 'My Office'
29
- @building_room = '100 Building Name'
30
- @address = '1 Oval Mall'
31
- @email = 'email@osu.edu'
32
- @phone = '614-292-OHIO'
33
- @fax = '614-555-5555'
34
-
35
- @facebook = nil
36
- @twitter = nil
37
- @instagram = nil
38
- @linkedin = nil
39
- @youtube = nil
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.10
4
+ version: 0.1.12
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-05 00:00:00.000000000 Z
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
@@ -127,7 +127,7 @@ metadata:
127
127
  homepage_uri: https://code.osu.edu/asctech/bootstrap_bux_gem
128
128
  source_code_uri: https://code.osu.edu/asctech/bootstrap_bux_gem
129
129
  changelog_uri: https://code.osu.edu/asctech/bootstrap_bux_gem/CHANGELOG.md
130
- post_install_message:
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.3.26
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: []