forked from ismasan/jbundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jbundle.gemspec
26 lines (22 loc) · 1012 Bytes
/
jbundle.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/jbundle/version", __FILE__)
Gem::Specification.new do |s|
s.name = "jbundle"
s.version = JBundle::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Ismael Celis']
s.email = ['[email protected]']
s.homepage = "http://github.com/ismasan/jbundle"
s.description = "Writes versioned, bundled and minified javascript files and dependencies"
s.summary = "Good for releasing javascript libraries composed of many files. Writes files apt for deploying to CDNs."
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "jbundle"
s.add_development_dependency "bundler", ">= 1.0.0"
s.add_development_dependency "rspec", '1.3.1'
s.add_dependency 'closure-compiler'
s.add_dependency 'thor'
s.add_dependency 'rack'
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
s.require_path = 'lib'
end