forked from freebsd/freebsd-ports
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Puma is a simple, fast, threaded, and highly concurrent HTTP 1.1 serv…
…er for Ruby/Rack applications. Puma is intended for use in both development and production environments. In order to get the best throughput, it is highly recommended that you use a Ruby implementation with real threads like Rubinius or JRuby. WWW: http://puma.io/
- Loading branch information
Showing
4 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Created by: Steve Wills <[email protected]> | ||
# $FreeBSD$ | ||
|
||
PORTNAME= puma | ||
PORTVERSION= 2.8.1 | ||
CATEGORIES= www rubygems | ||
MASTER_SITES= RG | ||
|
||
MAINTAINER= [email protected] | ||
COMMENT= Fast, multithreaded and highly concurrent ruby web server | ||
|
||
LICENSE= BSD3CLAUSE | ||
|
||
RUN_DEPENDS= rubygem-rack>=1.1.0:${PORTSDIR}/www/rubygem-rack | ||
|
||
USE_RUBY= yes | ||
USE_RUBYGEMS= yes | ||
RUBYGEM_AUTOPLIST= yes | ||
PLIST_FILES= bin/puma bin/pumactl | ||
|
||
.include <bsd.port.mk> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
SHA256 (rubygem/puma-2.8.1.gem) = 19bebe90d87badea30070d254fa0195d01b1036da647b6249b57d02dd96fd06a | ||
SIZE (rubygem/puma-2.8.1.gem) = 87040 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Puma is a simple, fast, threaded, and highly concurrent HTTP 1.1 server for | ||
Ruby/Rack applications. Puma is intended for use in both development and | ||
production environments. In order to get the best throughput, it is highly | ||
recommended that you use a Ruby implementation with real threads like Rubinius | ||
or JRuby. | ||
|
||
WWW: http://puma.io/ |