Skip to content

Commit

Permalink
More gemspec fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
leahneukirchen committed Jun 13, 2010
1 parent d9174f0 commit 2ed5157
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions rack.gemspec
Expand Up @@ -14,21 +14,22 @@ middleware) into a single method call.
Also see http://rack.rubyforge.org.
EOF

s.files = Dir['{bin/*,contrib/*,example/*,lib/**/*}'] +
s.files = Dir['{bin/*,contrib/*,example/*,lib/**/*,spec/**/*}'] +
%w(COPYING KNOWN-ISSUES rack.gemspec README SPEC)
s.bindir = 'bin'
s.executables << 'rackup'
s.require_path = 'lib'
s.has_rdoc = true
s.extra_rdoc_files = ['README', 'SPEC', 'KNOWN-ISSUES']
s.test_files = Dir['test/{test,spec}_*.rb']
s.test_files = Dir['spec/spec_*.rb']

s.author = 'Christian Neukirchen'
s.email = 'chneukirchen@gmail.com'
s.homepage = 'http://rack.rubyforge.org'
s.rubyforge_project = 'rack'

s.add_development_dependency 'bacon'
s.add_development_dependency 'rake'

s.add_development_dependency 'fcgi'
s.add_development_dependency 'memcache-client'
Expand Down

0 comments on commit 2ed5157

Please sign in to comment.