Giter Site home page Giter Site logo

dice_box's People

Contributors

rafaelgonzalez avatar

Watchers

 avatar  avatar

dice_box's Issues

Rename Dice @rolled instance variable

Wrong variable name used in initialization. This does not cause a bug but should be addressed nonetheless.

class Dice
  def initialize(sides_number)
    @sides = build_sides(sides_number)
    @rolled_side = nil
    @rolled = nil # Rename to result
  end
end

Initialize Dice with given Side values

Allow to pass an Array of values to Dice#new. In the future this would allow to specify any type of Side#value (characters and strings)

For example:

class Dice
  def initialize(fixnum_or_array)
    if fixnum_or_array.is_a? Array
      # create as many Sides as fixnum_or_array.size and populate with the values
    elsif fixnum_or_array.is_a? Fixnum
      # do what's already being done
    else
      # throw an ArgumentError
    end
  end
end

Implement probabilities for Dice

Add probability methods to DiceBox::Cup and DiceBox::Dice.

  • Dice#probabilities
  • Dice#probability(value)
  • Dice#probability_greater_than(value) (aka #probability_gt)
  • Dice#probability_greater_than_or_equal(value) (aka #probability_gte)
  • Dice#probability_lower_than(value) (aka #probability_lt)
  • Dice#probability_lower_than_or_equal(value) (aka #probability_lte)

Implement probabilities for Cup

  • Cup#probabilities
  • Cup#probability_equal_to(value)
  • Cup#probability_greater_than(value)
  • Cup#probability_greater_than_or_equal_to(value)
  • Cup#probability_lower_than(value)
  • Cup#probability_lower_than_or_equal_to(value)
  • Cup#probability_at_least(number, side_value)

Rewrite specs

Make more use of is_expected with let() to alter specs within contexts.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.