Skip to content

Commit

Permalink
Fix "summary" and "description" files in Gem specification.
Browse files Browse the repository at this point in the history
Signed-off-by: Krzysztof Wilczynski <krzysztof.wilczynski@linux.com>
  • Loading branch information
kwilczynski committed Aug 31, 2013
1 parent d3adbec commit cb6bbc3
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions ruby-fizzbuzz.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,14 @@

Gem::Specification.new do |s|
s.name = 'ruby-fizzbuzz'
s.description = 'Yet another FizzBuzz in Ruby'
s.description = <<-EOS
Yet another FizzBuzz in Ruby
Provides simple and fast solution to a popular FizzBuzz problem for Ruby.
Written in C as an example of using Ruby's C API - with the support for
arbitrary large numeric values via the Bignum class.
EOS
s.platform = Gem::Platform::RUBY
s.version = File.read('VERSION').strip
s.license = 'Apache License, Version 2.0'
Expand All @@ -34,12 +41,7 @@ Gem::Specification.new do |s|
s.rubygems_version = '~> 1.3.7'
s.has_rdoc = true

s.summary = <<-EOS
Provides simple and fast solution to a popular FizzBuzz problem for Ruby.
Written in C as an example of using Ruby's C API - with the support for
arbitrary large numeric values via the Bignum class.
EOS
s.summary = 'Yet another FizzBuzz in Ruby'

s.files = Dir['ext/**/*.{c,h,rb}'] +
Dir['lib/**/*.rb'] +
Expand Down

0 comments on commit cb6bbc3

Please sign in to comment.