First, delete the file app/assets/stylesheets/scaffolds.css.scss
Then, in app/assets/stylesheets/application.css
Remove:
class GameBoard | |
attr_accessor :game_grid | |
def initialize | |
@game_grid = [%w[. . .], %w[. . .], %w[. . .]] | |
@pacman = Pacman.new | |
@pacman_location = [1,1] | |
end | |
def place_pacman | |
game_grid[@pacman_location[0]][@pacman_location[1]] = Pacman::STATES[@pacman.current_direction] |
#!/usr/bin/env ruby | |
class Go | |
attr_accessor :branch_input, :branch_list | |
def initialize | |
@branch_input = ARGV[0] | |
end | |
def initialize_branch_name(&block) | |
@branch_input ||= begin |
Name | Description | Due | |
---|---|---|---|
A task | The desscrption of the task | dd/mm/yy | |
More tasks | More descriptions of tasks | dd/mm/yy |
# gem install rest-client | |
require 'json' | |
require 'rest_client' | |
require 'csv' | |
require 'cgi' | |
require 'uri' | |
# To use, get an access token here, by clicking "get access token" | |
# and checking user.groups in the dialog box | |
# https://developers.facebook.com/tools/explorer?method=GET&path=209024949216061%2Ffeed |
ed, White and Roy | |
Singing her fist | |
And I like Gene and Roy | |
Singing her feet, | |
The U.S. of A. | |
'Cause we'll put a boot it reved up, rocking, ready to run | |
And someday soon, I'm gonna climb right down, | |
She gives them what thing. | |
Cast a big boss man, he lit up you'll always stand up in the stereo. |
/* Tomorrow Night Eighties Theme */ | |
/* Original theme - https://github.com/chriskempson/tomorrow-theme */ | |
/* Pretty printing styles. Used with prettify.js. */ | |
/* SPAN elements with the classes below are added by prettyprint. */ | |
/* plain text */ | |
/* line 7, /Users/bhays/Sites/new-website/source/stylesheets/lib/prettify.scss */ | |
.pln { | |
color: #cccccc; } | |
@media screen { |
class Parser | |
attr_reader :files | |
def initialize | |
@read_file_mode = false | |
@files = {} | |
end | |
def feed(line) | |
if scan_mode? && scan_match(line) | |
@read_file_mode = true |
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName:'Ember Twiddle' | |
}); |