forked from robolson/ruby-poker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ruby-poker.gemspec
31 lines (29 loc) · 1.23 KB
/
ruby-poker.gemspec
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
Gem::Specification.new do |s|
s.name = 'ruby-poker'
s.version = '1.0.1'
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 = 'rob@thinkingdigitally.com'
s.homepage = 'https://github.com/robolson/ruby-poker'
s.license = 'BSD'
s.files = ['CHANGELOG',
'examples/deck.rb',
'examples/quick_example.rb',
'lib/ruby-poker.rb',
'lib/ruby-poker/card.rb',
'lib/ruby-poker/poker_hand.rb',
'LICENSE',
'Rakefile',
'README.rdoc',
'ruby-poker.gemspec']
s.test_files = ['test/test_helper.rb', 'test/test_card.rb', 'test/test_poker_hand.rb', 'test/test_full_house.rb']
s.require_paths << 'lib'
s.extra_rdoc_files = ['README.rdoc', 'CHANGELOG', 'LICENSE']
s.rdoc_options << '--title' << 'Ruby Poker Documentation' \
'--main' << 'README.rdoc' \
'--inline-source' << '-q'
s.add_development_dependency('test-unit', '~> 3.1') if /^2.[2-9]/ =~ RUBY_VERSION && RUBY_ENGINE == 'ruby'
s.add_development_dependency('shoulda-context', '~> 1.1')
end