robolson / ruby-poker

Ruby library for comparing poker hands and determining the winner.

This URL has Read+Write access

ruby-poker / ruby-poker.gemspec
100644 33 lines (30 sloc) 1.019 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Gem::Specification.new do |s|
  s.name = "ruby-poker"
  s.version = "0.3.1"
  s.date = "2009-01-24"
  s.rubyforge_project = "rubypoker"
  s.platform = Gem::Platform::RUBY
  s.summary = "Poker library in Ruby"
  s.description = "Ruby library for comparing poker hands and determining the winner."
  s.author = "Rob Olson"
  s.email = "rko618@gmail.com"
  s.homepage = "http://github.com/robolson/ruby-poker"
  s.has_rdoc = true
  s.files = ["CHANGELOG",
"examples/deck.rb",
"examples/quick_example.rb",
"lib/card.rb",
"lib/ruby-poker.rb",
"LICENSE",
"Rakefile",
"README.rdoc",
"ruby-poker.gemspec"]
  s.test_files = ["test/test_card.rb",
    "test/test_poker_hand.rb"]
  s.require_paths << 'lib'
  
  s.extra_rdoc_files = ["README", "CHANGELOG", "LICENSE"]
  s.rdoc_options << '--title' << 'Ruby Poker Documentation' <<
                    '--main' << 'README.rdoc' <<
                    '--inline-source' << '-q'
  
  # s.add_dependency("thoughtbot-shoulda", ["> 2.0.0"])
end