public
Description: JavaScript dependency management and concatenation
Homepage: http://getsprockets.org/
Clone URL: git://github.com/sstephenson/sprockets.git
sstephenson (author)
Tue Feb 17 17:08:41 -0800 2009
commit  ee41deb4cfd4df3890cf53818f4107ed146dc265
tree    4d0a2042d79269ccf0b008a3ea0c3000d455d4e6
parent  52bd30bd1e1179f956bf2dec651fd13d277a7c19
sprockets / sprockets.gemspec
100644 16 lines (15 sloc) 0.601 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.0"
  s.date = "2009-02-17"
  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/**/*"]
  s.test_files = Dir["test/test_*.rb"] unless $SAFE > 0
  s.executables = ["sprocketize"]
end