View gist:074ca9882ca67440d0d08292538afa55
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2021-06-25T20:13:32.9675214Z Found online and idle hosted runner(s) in the current repository's organization account that matches the required labels: 'ubuntu-latest' | |
2021-06-25T20:13:32.9675305Z Waiting for a hosted runner in 'organization' to pick this job... | |
2021-06-25T20:13:39.2291181Z Current runner version: '2.278.0' | |
2021-06-25T20:13:39.2318366Z ##[group]Operating System | |
2021-06-25T20:13:39.2319177Z Ubuntu | |
2021-06-25T20:13:39.2319652Z 20.04.2 | |
2021-06-25T20:13:39.2320042Z LTS | |
2021-06-25T20:13:39.2320532Z ##[endgroup] | |
2021-06-25T20:13:39.2321043Z ##[group]Virtual Environment | |
2021-06-25T20:13:39.2321735Z Environment: ubuntu-20.04 |
View gist:b0e7923d7d95b8017b5bab66f5f748ea
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2021-06-25T18:31:58.0277786Z Found online and idle hosted runner(s) in the current repository's organization account that matches the required labels: 'ubuntu-latest' | |
2021-06-25T18:31:58.0277977Z Waiting for a hosted runner in 'organization' to pick this job... | |
2021-06-25T18:32:05.1994810Z Current runner version: '2.278.0' | |
2021-06-25T18:32:05.2032321Z ##[group]Operating System | |
2021-06-25T18:32:05.2033590Z Ubuntu | |
2021-06-25T18:32:05.2034045Z 20.04.2 | |
2021-06-25T18:32:05.2034522Z LTS | |
2021-06-25T18:32:05.2034986Z ##[endgroup] | |
2021-06-25T18:32:05.2036154Z ##[group]Virtual Environment | |
2021-06-25T18:32:05.2037376Z Environment: ubuntu-20.04 |
View gist:3717c93027f6bacf004b208b33ac2bda
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
table | |
tr | |
th Paypoint | |
th Vendor | |
- @item_groups_by_cost_code = Hash[template.item_groups.group_by{|item_group| item_group.cost_code}.sort_by{|k, v| k.number}] | |
- @item_groups_by_cost_code.each do |cost_code, item_groups| | |
tr | |
td colspan='2' style='font-size: 14px;' = "#{cost_code.number} - #{cost_code.description}" | |
- item_groups.each do |item_group| |
View gist:81b3e1eef16391081fef
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.sticky-footer{ | |
position: relative; | |
bottom: 0; | |
width: 100%; | |
} |
View super_people_controller.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class SuperPeopleController < ApplicationController | |
def index | |
@super_person = SuperPerson.all | |
end | |
def show | |
@super_person = SuperPerson.find(params[:id]) | |
end | |
def new |
View gist:f945a2b892b58a20a813
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class SuperPeopleController < ApplicationController | |
def index | |
@super_person = SuperPerson.all | |
end | |
def show | |
@super_person = SuperPerson.find(params[:id]) | |
end | |
def new |