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
ABOUT TO CALL POST FROM TESTS WITH THIS DATA | |
data: {} | |
source=rack-timeout id=40677bbc82995734013bd5f9f961a8d8 timeout=20000ms state=ready | |
Started POST "/api/purchases" for 127.0.0.1 at 2015-06-25 11:49:41 -0700 | |
source=rack-timeout id=40677bbc82995734013bd5f9f961a8d8 timeout=20000ms service=5ms state=active | |
Processing by Api::PurchasesController#create as HTML | |
Parameters: {"purchase"=>{}} |
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 UserController < ActionController::Base | |
def new | |
@user = User.new | |
end | |
def create | |
result = SignupUser.call(params[:user]) | |
if result.successful? | |
redirect_to root_url, notice: "A welcome e-mail is on it's way!" |
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 TennisGame | |
def player_one_scores | |
end | |
def player_two_scores | |
end | |
def score | |
"Love All" |
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 GradeStudents | |
def self.call(teacher_name, course_name, grade_list) | |
course = CourseRegistry.lookup(course_name) | |
teacher = TeacherRegistry.lookup(teacher_name) | |
course.for_each_student do |student| | |
if grade = grade_list[student.name] | |
student.complete_course(course, grade) | |
end | |
end | |
end |
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 Course | |
attr_accessor :title, :location | |
def initialize(params = {}); end | |
def add_teacher(teacher); end | |
def add_student(student); end | |
def for_each_student; end | |
private | |
attr_accessor :teachers, :students |
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
gem 'rails', '3.2.13' # change as required | |
require 'active_record' | |
# Print out what version we're running | |
puts "Active Record #{ActiveRecord::VERSION::STRING}" | |
# Connect to an in-memory sqlite3 database (more on this in a moment) | |
ActiveRecord::Base.establish_connection( | |
:adapter => 'sqlite3', | |
:database => ':memory:' |
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
>> [1,2,3, 4].each {|x| puts x; break if x == 1} | |
1 | |
=> nil | |
>> [1,2,3, 4].each {|x| puts x; puts 'broken' and break if x == 1} | |
1 | |
broken | |
2 | |
3 | |
4 |
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 Redis | |
attr_accessor :server | |
end | |
class RedisNamespace | |
attr_accessor :redis | |
def initialize(namespace, options = {}) | |
self.redis = options[:redis] || :internal | |
end |
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
From 003273df39c7e65b27197930064c77f2141969d5 Mon Sep 17 00:00:00 2001 | |
From: Adam Cooper <[email protected]> | |
Date: Sun, 16 Oct 2011 18:21:15 -0700 | |
Subject: [PATCH] fixing the bundle install issue | |
--- | |
hubruby.gemspec | 2 +- | |
lib/hubruby.rb | 2 +- | |
lib/version.rb | 3 +++ | |
3 files changed, 5 insertions(+), 2 deletions(-) |
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
ProductType.all.each do |product_type| | |
# Check if product type has banyan category group | |
product_type_group = product_type.category_group | |
# Create banyan category group for product type if not exist | |
if product_type_group.nil? | |
product_type_group = Banyan::CategoryGroup.new(:name => product_type.name + " Category Group") | |
product_type_group.group_categorizable = product_type | |
product_type_group.save! | |
end |
NewerOlder