This repository has been archived by the owner on Nov 9, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathrack-coffee.gemspec
35 lines (31 loc) · 1.52 KB
/
rack-coffee.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
27
28
29
30
31
32
33
34
35
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "rack-coffee"
s.version = "1.0.3"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Matthew Lyon", "Brian Mitchell"]
s.date = "2014-03-29"
s.description = "Rack Middlware for compiling and serving .coffee files using coffee-script; \"/javascripts/app.js\" compiles and serves \"/javascipts/app.coffee\"."
s.email = "[email protected]"
s.files = [".gitignore", ".travis.yml", "Gemfile", "Gemfile.lock", "Rakefile", "Readme.mkdn", "lib/rack/coffee.rb", "rack-coffee.gemspec", "test/javascripts/cache_compile.coffee", "test/javascripts/static.js", "test/javascripts/test.coffee", "test/other_javascripts/test.coffee", "test/rack_coffee_test.rb"]
s.homepage = "http://github.com/mattly/rack-coffee"
s.licenses = ["MIT"]
s.require_paths = ["lib"]
s.rubyforge_project = "rack-coffee"
s.rubygems_version = "2.0.3"
s.summary = "serve up coffeescript from rack middleware"
s.test_files = ["test/rack_coffee_test.rb"]
if s.respond_to? :specification_version then
s.specification_version = 4
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<rack>, [">= 0"])
s.add_runtime_dependency(%q<coffee-script>, [">= 0"])
else
s.add_dependency(%q<rack>, [">= 0"])
s.add_dependency(%q<coffee-script>, [">= 0"])
end
else
s.add_dependency(%q<rack>, [">= 0"])
s.add_dependency(%q<coffee-script>, [">= 0"])
end
end