hackathon_manager 0.13.9 → 0.13.10

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: d2a08f6072d0cd24110a7713e93b2d51f638d6d5db69b4161a5ac3b435ff110a
4
- data.tar.gz: dd293ca99e1691f209cc2805b16d4622eea6873fafeefba89b1037d0b8191898
3
+ metadata.gz: aaa095607cc9ed17e594f173fcc0bd5ccc0826c3503d581b60a431b8e3816317
4
+ data.tar.gz: 2b46252b061915d80c1095246a3e78932765568cb55333b2e0b5c89df54aca35
5
5
  SHA512:
6
- metadata.gz: 245becf5bdc9914218fcc6f20e4f00a19b6ff1dc5e4f66221e053d032070c8ac9917b64b929ebc32ff59516909d441ff6919bc5f8763981177f6ea7ef9970774
7
- data.tar.gz: e376e3324f1ce9bf63a1706ef22f0f637a6252e42c9e96cb08b6a2e2135259a89815742116eccc44260140eafeee440dd44affbed1760aa466ac41be8df4bd47
6
+ metadata.gz: 3f13ac65bb41516c115bd18d3de2925f66710500df32a559a9917211958f95b1ff7bad4fe4fc61cc4964124e6f02f4241e07780afc18c67a1de7d21f17d4ad19
7
+ data.tar.gz: f181edfd9e49c12405ed5bfa7733fb3628eac56f83456fd4707c2802f3426d7779be087ccec6593b23ef95f35fe420d11e159d5d9f9bd2d2a019f39ed5901144
@@ -7,6 +7,7 @@
7
7
 
8
8
  opacity: 0
9
9
  animation: flashesFadeIn 400ms 100ms ease-out forwards
10
+ animation-delay: 0.4s
10
11
 
11
12
  .flashes__icon
12
13
  margin-right: 0.4em
@@ -3,7 +3,7 @@ class BusListsController < ApplicationController
3
3
  before_action :check_user_has_questionnaire
4
4
  before_action :find_questionnaire
5
5
  before_action :find_bus_list
6
- before_action :require_bus_captian
6
+ before_action :require_bus_captain
7
7
 
8
8
  layout 'hackathon_manager/application'
9
9
 
@@ -54,7 +54,7 @@ class BusListsController < ApplicationController
54
54
  redirect_to root_path if current_user.questionnaire.nil?
55
55
  end
56
56
 
57
- def require_bus_captian
57
+ def require_bus_captain
58
58
  redirect_to root_path unless @questionnaire.is_bus_captain?
59
59
  end
60
60
  end
@@ -1,5 +1,5 @@
1
1
  %fieldset
2
- %legend Bus Captians
2
+ %legend Bus Captains
3
3
  - if bus_list.captains.empty?
4
4
  %p
5
5
  %em TBD
@@ -6,7 +6,9 @@
6
6
  RSVP
7
7
  %span.emphasized Preferences
8
8
  - if @questionnaire.acc_status == "rsvp_confirmed" || @questionnaire.checked_in?
9
- %strong ALL SET TO ATTEND!
9
+ %strong
10
+ %span.fa.fa-check.icon-space-r-half
11
+ YOU ARE ATTENDING!
10
12
  - if Rails.configuration.hackathon['thanks_for_rsvp']
11
13
  %br
12
14
  = markdown(Rails.configuration.hackathon['thanks_for_rsvp'])
@@ -14,7 +16,12 @@
14
16
  %br
15
17
  %br
16
18
  - else
17
- %strong= current_user.questionnaire.verbal_status.upcase
19
+ %strong
20
+ - if @questionnaire.acc_status == "accepted"
21
+ %span.fa.fa-clock-o.icon-space-r-half
22
+ - elsif @questionnaire.acc_status == "rsvp_denied"
23
+ %span.fa.fa-close.icon-space-r-half
24
+ = current_user.questionnaire.verbal_status.upcase
18
25
  - if @questionnaire.acc_status == "rsvp_denied"
19
26
  %p Sorry to hear you won't be with us this year.
20
27
  - else
@@ -38,12 +45,12 @@
38
45
  - if @questionnaire.acc_status == "rsvp_confirmed" || @questionnaire.checked_in?
39
46
  %strong
40
47
  - if @questionnaire.bus_list_id
41
- ALL SET TO RIDE THE BUS!
48
+ %span.fa.fa-check.icon-space-r-half
49
+ YOU ARE RIDING THE BUS
42
50
  - else
43
- NOT RIDING BUS
44
-
45
- %br
46
- %br
51
+ %span.fa.fa-close.icon-space-r-half
52
+ YOU ARE NOT RIDING BUS
53
+ %br
47
54
 
48
55
  %p
49
56
  We are providing free, sponsored busses. Will you be riding?
@@ -1,3 +1,3 @@
1
1
  module HackathonManager
2
- VERSION = '0.13.9'.freeze
2
+ VERSION = '0.13.10'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hackathon_manager
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.9
4
+ version: 0.13.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stuart Olivera