-
Notifications
You must be signed in to change notification settings - Fork 0
/
rack-cappuccino.gemspec
34 lines (29 loc) · 995 Bytes
/
rack-cappuccino.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$LOAD_PATH.unshift lib unless $:.include?(lib)
require "rack/cappuccino"
Gem::Specification.new do |s|
s.name = "rack-cappuccino"
s.version = Rack::Cappuccino::VERSION
s.platform = Gem::Platform::RUBY
s.summary = "Transform a Cappuccino app into a Rack app."
s.description = "Rack::Cappucciono serves up your Build/Release/__APPNAME__ folder as a Rack application."
s.author = 'Matte Noble'
s.email = '[email protected]'
s.homepage = 'http://github.com/mnoble/rack-cappuccino'
s.require_path = "lib"
s.files = [
"changelog.markdown",
"Gemfile",
"Gemfile.lock",
"LICENSE",
"rack-cappuccino.gemspec",
"Rakefile",
"README.markdown",
"lib/rack/cappuccino.rb"
]
s.test_files = Dir["spec/**/*"]
s.extra_rdoc_files = ["LICENSE", "README.markdown"]
s.add_dependency "rake"
s.add_development_dependency "rack"
end