shotgun.gemspec 906 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. Gem::Specification.new do |s|
  2. s.name = 'shotgun'
  3. s.version = '0.9'
  4. s.date = '2011-02-24'
  5. s.description = "reloading rack development server"
  6. s.summary = s.description
  7. s.authors = ["Ryan Tomayko"]
  8. s.email = "rtomayko@gmail.com"
  9. s.files = %w[
  10. COPYING
  11. README
  12. Rakefile
  13. bin/shotgun
  14. lib/shotgun.rb
  15. lib/shotgun/favicon.rb
  16. lib/shotgun/loader.rb
  17. lib/shotgun/static.rb
  18. man/index.txt
  19. man/shotgun.1
  20. man/shotgun.1.ronn
  21. shotgun.gemspec
  22. test/big.ru
  23. test/boom.ru
  24. test/slow.ru
  25. test/test-sinatra.ru
  26. test/test.ru
  27. test/test_shotgun_loader.rb
  28. test/test_shotgun_static.rb
  29. ]
  30. s.executables = ['shotgun']
  31. s.test_files = s.files.select { |f| f =~ /test_shotgun.*rb/ }
  32. s.extra_rdoc_files = %w[README]
  33. s.add_dependency 'rack', '>= 1.0'
  34. s.homepage = "http://github.com/rtomayko/shotgun"
  35. s.require_paths = %w[lib]
  36. end