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
| def initialize(numhands, n = 5, deck = [r+s for r in '23456789TJQKA' for s in 'SHDC']) | |
| deck.shuffle | |
| i = 0 | |
| numhands.times do (n*i).upto(n*(i+1)) {|x|... } | |
| end | |
| 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
| def initialize(hands, cards) | |
| ranks = %w{ 2 3 4 5 6 7 8 9 T J Q K A } | |
| suits = %w{ S H D C } | |
| card_stack = Array.new | |
| h = Array.new | |
| suits.each {|suit| | |
| ranks.size.times {|i| | |
| card_stack << (ranks[i]+suit) | |
| } | |
| } |
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 PokerGame | |
| include Enumerable | |
| include Comparable | |
| attr_reader :hand | |
| def initialize(hands, cards) | |
| ranks = %w{ 2 3 4 5 6 7 8 9 T J Q K A } | |
| suits = %w{ S H D C } | |
| card_stack = Array.new | |
| h = Array.new |
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 PokerGame | |
| include Enumerable | |
| include Comparable | |
| attr_reader :hand | |
| def initialize(hands, cards) | |
| ranks = %w{ 2 3 4 5 6 7 8 9 T J Q K A } | |
| suits = %w{ S H D C } | |
| card_stack = Array.new | |
| num_hands = Array.new |
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
| def User | |
| has_many :propositions, :as => :debateable | |
| has_many :oppositions, :as => :debateable | |
| end | |
| def Proposition | |
| belongs_to :debateable, :polymorphic => :true | |
| has_one :opposition, :as => :debateable | |
| 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
| require 'spec_helper' | |
| describe Debate do | |
| #let(:prop_user) { FactoryGirl.create(:user) } | |
| #let(:opp_user) { FactoryGirl.create(:user) } | |
| before do | |
| @prop_user = User.new(name: "Prop User", email: "[email protected]") | |
| @opp_user = User.new(name: "Opp User", email: "[email protected]") | |
| @debate = Debate.new(title: "Test Debate") |
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
| routes.rb | |
| ---------- | |
| Debateable::Application.routes.draw do | |
| resources :users do | |
| resources :posts | |
| end | |
| resources :topics do | |
| resources :posts |
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
| require "minitest_helper" | |
| class EmployeeTest < MiniTest::Unit::TestCase | |
| def setup | |
| super | |
| @employee = Employee.new(first_name: "Jannis", last_name: "Steele") | |
| @user = User.new(login: "Geoblaster", password: "foobar", password_confirmation: "foobar", email: "[email protected]") | |
| @employee.user = @user | |
| 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
| app/controllers/invoices_controller.rb:3:in `[]' | |
| app/controllers/invoices_controller.rb:3:in `show_client_invoices' |
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
| <table class="table table-bordered table-striped"> | |
| <%= @invoice_reservations.each do |r| %> | |
| <tr> | |
| <td><%= r.name %></td> | |
| </tr> | |
| </table> |
OlderNewer