public
Description: JavaScript dependency management and concatenation
Homepage: http://getsprockets.org/
Clone URL: git://github.com/sstephenson/sprockets.git
sprockets / sprockets.gemspec
100644 16 lines (15 sloc) 0.613 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Gem::Specification.new do |s|
  s.name = "sprockets"
  s.version = "1.0.2"
  s.date = "2009-02-24"
  s.summary = "JavaScript dependency management and concatenation"
  s.email = "sstephenson@gmail.com"
  s.homepage = "http://getsprockets.org/"
  s.description = "Sprockets is a Ruby library that preprocesses and concatenates JavaScript source files."
  s.rubyforge_project = "sprockets"
  s.has_rdoc = false
  s.authors = ["Sam Stephenson"]
  s.files = Dir["Rakefile", "bin/**/*", "lib/**/*", "test/**/*", "ext/**/*"]
  s.test_files = Dir["test/test_*.rb"] unless $SAFE > 0
  s.executables = ["sprocketize"]
end