This file contains hidden or 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
| #pulls li.age-aging, | |
| #pulls li.age-old { | |
| /*background: #9Fa098;*/ | |
| } |
This file contains hidden or 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
| Bundler could not find compatible versions for gem "nokogiri": | |
| In Gemfile: | |
| govspeak (= 1.5.4) ruby depends on | |
| nokogiri (~> 1.5.10) ruby | |
| slimmer (= 4.1.0) ruby depends on | |
| nokogiri (1.5.9) |
This file contains hidden or 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
| {"www.agileplannerapp.com":{"_enabled":true,"_rules":{".masthead":{"display":"none"},"#page > p.update":{"display":"none"},".kanban-board > header":{"display":"none"},".column[data-collection=Blocked] .cards > li > article":{"border":"4px solid red"},".column .bar":{"display":"none"}}}} |
This file contains hidden or 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
| namespace :smartdown do | |
| def smartdown_coversheet_path(flow_name, coversheet_name= flow_name) | |
| File.join(smartdown_flow_path(flow_name), "#{coversheet_name}.txt") | |
| end | |
| def smartdown_flow_path(flow_name) | |
| Rails.root.join('lib', 'smartdown_flows', flow_name) | |
| end |
This file contains hidden or 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
| [ | |
| { | |
| "userName": "alphagov", | |
| "repo": "calculators" | |
| }, | |
| { | |
| "userName": "alphagov", | |
| "repo": "calendars" | |
| }, | |
| { |
This file contains hidden or 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
| Post your documents and the form. | |
| ##1. Check your documents |
This file contains hidden or 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
| Post your documents and the form. | |
| ##1. Check your documents |
This file contains hidden or 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
| #pulls li { | |
| background: #333 !important; | |
| padding-right: 40px; | |
| opacity: .8; | |
| } | |
| #pulls li .status { | |
| right: 0; | |
| top: 0; | |
| height: 100%; |
This file contains hidden or 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
| body { | |
| background: #000; | |
| color: #fff; | |
| margin: 10px; | |
| } | |
| a { | |
| color: #fff ; | |
| } |
This file contains hidden or 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 Artist < ActiveRecord::Base | |
| extend FriendlyId | |
| friendly_id :name, use: :finders | |
| end | |
OlderNewer