README: use write_utf8 in the example
[sunshowers.git] / sunshowers.gemspec
blob4f30ae017e2020398d3d69b4644a1b7b9d2bb26e
1 # -*- encoding: binary -*-
3 ENV["VERSION"] or abort "VERSION= must be specified"
4 manifest = File.readlines('.manifest').map! { |x| x.chomp! }
6 # don't bother with tests that fork, not worth our time to get working
7 # with `gem check -t` ... (of course we care for them when testing with
8 # GNU make when they can run in parallel)
9 test_files = manifest.grep(%r{\Atest/test_.*\.rb\z}).map do |f|
10   File.readlines(f).grep(/\bfork\b/).empty? ? f : nil
11 end.compact
13 Gem::Specification.new do |s|
14   s.name = %q{sunshowers}
15   s.version = ENV["VERSION"]
17   s.authors = ["Sunshowers hackers"]
18   s.date = Time.now.utc.strftime('%Y-%m-%d')
19   s.description = File.read("README").split(/\n\n/)[1]
20   s.email = %q{sunshowers@librelist.com}
21   s.executables = %w()
23   s.extra_rdoc_files = File.readlines('.document').map! do |x|
24     x.chomp!
25     if File.directory?(x)
26       manifest.grep(%r{\A#{x}/})
27     elsif File.file?(x)
28       x
29     else
30       nil
31     end
32   end.flatten.compact
34   s.files = manifest
35   s.homepage = %q{http://rainbows.rubyforge.org/sunshowers/}
36   s.summary = %q{Web Sockets for Ruby, Rack+Rainbows!}
37   s.rdoc_options = [ "-Na", "-t", "Sunshowers - #{s.summary}" ]
38   s.require_paths = %w(lib)
39   s.rubyforge_project = %q{rainbows}
41   s.test_files = test_files
43   # rainbows has a boatload of dependencies
44   # required:
45   #   unicorn + rack
46   # optional:
47   #   revactor + rev + iobuffer
48   # # the following do not work directly with Sunshowers, yet
49   #   rev + iobuffer
50   #   eventmachine
51   #   espace-neverblock + eventmachine
52   #   async_sinatra + sinatra + eventmachine
53   # recommended:
54   #   Ruby 1.9 + FiberSpawn concurrency model with Rainbows!
55   # s.add_dependency(%q<rainbows>, ["~> 0.9.0"])
57   # s.licenses = %w(GPLv2 Ruby) # accessor not compatible with older RubyGems
58 end