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
# Example - Let's write a function that prints a name | |
# This is RSpec, it's a testing framework. It's just like ruby in that it's made to be super readable. As you read the code, read it outloud like instructions | |
# We start with tests first | |
# We know that we need a function to print names. That's all we need. We | |
# use tests to keep us focused on the task. You'll write it piece by piece. Instead of writing the whole | |
# function, we'll break it up into responsibility chunks |
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
/* ACL Tables */ | |
CREATE TABLE acos ( | |
id INT UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY, | |
parent_id INT DEFAULT NULL, | |
model VARCHAR(255) DEFAULT '', | |
foreign_key INT UNSIGNED DEFAULT NULL, | |
alias VARCHAR(255) DEFAULT '', | |
lft INT DEFAULT NULL, | |
rght INT DEFAULT NULL |
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
Started POST "/patients/4/prescribe" for 127.0.0.1 at 2013-05-02 16:24:39 -0400 | |
Processing by PatientsController#prescribe as HTML | |
Parameters: {"utf8"=>"✓", "authenticity_token"=>"Y8q2s/H4QzKVX8v03mXKg282kLEaNIwsztwVjQaJL7Q=", "patient"=>{"prescriptions_attributes"=>{"0"=>{"product_id"=>"2", "total_amount_prescribed"=>"100", "total_amount_prescribed_quantity"=>"Tablets", "amount_prescribed"=>"1", "amount_prescribed_quantity"=>"Tablets", "frequency"=>"Daily", "_destroy"=>"1", "id"=>"3"}, "1"=>{"product_id"=>"", "total_amount_prescribed"=>"", "total_amount_prescribed_quantity"=>"", "amount_prescribed"=>"", "amount_prescribed_quantity"=>"", "frequency"=>"", "_destroy"=>"0"}}}, "commit"=>"Update Patient", "patient_id"=>"4"} | |
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] | |
{"utf8"=>"✓", "authenticity_token"=>"Y8q2s/H4QzKVX8v03mXKg282kLEaNIwsztwVjQaJL7Q=", "patient"=>{"prescriptions_attributes"=>{"0"=>{"product_id"=>"2", "total_amount_prescribed"=>"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
# spec/controllers/pages_controller_spec.rb | |
require 'spec_helper' | |
describe PagesController do | |
describe "#show" do | |
context "with a published slug" do | |
... | |
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
class User | |
include Mongoid::Document | |
authenticates_with_sorcery! | |
attr_accessor :username, :email, :password, :password_confirmation | |
attr_accessible :username, :email, :password, :password_confirmation | |
field :_id, type: String, default: -> { username.to_s.parameterize } | |
field :username, type: String | |
field :email, type: String |
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
// | |
// BCOAuthController.h | |
// Bivy | |
// | |
// Created by Brandon Cordell on 8/1/12. | |
// Copyright (c) 2012 lead&rock. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> | |
#import <WebKit/WebKit.h> |
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
// BCOAuthController.h | |
// | |
// BCOAuthController.h | |
// Bivy | |
// | |
// Created by Brandon Cordell on 8/1/12. | |
// Copyright (c) 2012 lead&rock. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> |
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
@user = User.new({ | |
email: "user#{n}@7ey.es", | |
first_name: Forgery(:name).first_name, | |
last_name: Forgery(:name).last_name, | |
password: 'letmein', | |
remember_me: true, | |
}) |
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 PagesController < HighVoltage::PagesController | |
def home | |
session[:coverage] = 10 | |
end | |
end | |
# in the view (haml) | |
= debug session.inspect |
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
# admin/dealers_controller.rb | |
class Admin::DealersController < Admin::BaseController | |
def new | |
@dealer = Dealer.new | |
7.times do |i| | |
@dealer.hours.build(day: i) | |
end | |
end |