I hereby claim:
- I am bitbckt on github.
- I am bitbckt (https://keybase.io/bitbckt) on keybase.
- I have a public key whose fingerprint is DD22 A16E 3311 F49A EA36 FF04 2073 DF75 F0BF BFDA
To claim this, I am signing this object:
| [alias] | |
| lol = log --graph --decorate --pretty=oneline --abbrev-commit | |
| lola = log --graph --decorate --pretty=oneline --abbrev-commit --all | |
| fuckit = reset --hard HEAD | |
| [push] | |
| default = simple |
I hereby claim:
To claim this, I am signing this object:
| class Admin::PlayersController < ApplicationController | |
| before_filter :authenticate | |
| before_filter :load_player, :except => [:index, :new, :create] | |
| def index | |
| @players = Player.all | |
| end | |
| def show |
| Feature: Managed Categories | |
| As a user | |
| I want to manage categories | |
| So that I can present readers with an easily navigable list of recipe types | |
| Scenario: New category | |
| Given a tag exists with a name of "vegan" | |
| And a user exists with "admin/password" | |
| And I log in with "admin/password" | |
| And I am on the new category page |
| Feature: Log in | |
| In order to get access to protected sections of the site | |
| A user | |
| Should be able to log in | |
| Scenario: User is not signed up | |
| Given no user exists with a login of "admin" | |
| When I go to the log in page | |
| And I log in with "admin/password" | |
| Then I should see "Bad login or password" |
| Factory.factories.each do |name, factory| | |
| Given /^an? #{name} exists with an? (.*) of "([^"]*)"$/ do |attr, value| | |
| Factory(name, attr.gsub(' ', '_') => value) | |
| end | |
| end |
| Given /^category "(\w+)" is tagged with "([^\"]*)"$/ do |name, tag| | |
| Factory(:category, :name => name, :tag_list => tag) | |
| end |
| /usr/lib/ruby/gems/1.8/gems/em-redis-0.1.1/lib/em-redis/redis_protocol.rb:457:in `process_cmd': undefined local variable or method `code' for #<#<Class:0x7f30ccb9c568>:0x7f30ccb9c248> (NameError) | |
| from /usr/lib/ruby/gems/1.8/gems/em-redis-0.1.1/lib/em-redis/redis_protocol.rb:374:in `receive_data' | |
| from /usr/lib/ruby/gems/1.8/gems/eventmachine-0.12.6/lib/eventmachine.rb:240:in `run_machine' | |
| from /usr/lib/ruby/gems/1.8/gems/eventmachine-0.12.6/lib/eventmachine.rb:240:in `run' | |
| from /usr/lib/ruby/gems/1.8/gems/eventmachine-0.12.6/lib/eventmachine.rb:291:in `fork_reactor' | |
| from /usr/lib/ruby/gems/1.8/gems/eventmachine-0.12.6/lib/eventmachine.rb:285:in `fork' | |
| from /usr/lib/ruby/gems/1.8/gems/eventmachine-0.12.6/lib/eventmachine.rb:285:in `fork_reactor' | |
| from /home/brandon/botbckt/lib/botbckt/bot.rb:39:in `start' | |
| from /home/brandon/botbckt/lib/botbckt/cmd.rb:9:in `run' |
| ;; Turn off MuMaMo's goofy backgrounds | |
| (custom-set-faces | |
| '(mumamo-background-chunk-major ((((class color) | |
| (min-colors 88) | |
| (background light)) | |
| (:background "#fff")))) | |
| '(mumamo-background-chunk-submode1 ((((class color) | |
| (min-colors 88) | |
| (background light)) | |
| (:background "#fff"))))) |
| module ShouldaContextExtensions | |
| def self.included(base) | |
| base.class_eval do | |
| alias_method_chain :build, :fast_context | |
| alias_method_chain :am_subcontext?, :fast_context | |
| end | |
| end | |
| def fast_context(name, &blk) | |
| @fast_subcontexts ||= [] |