summaryrefslogtreecommitdiffhomepage
path: root/pkg/deb
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/deb')
-rw-r--r--pkg/deb/Makefile5
-rw-r--r--pkg/deb/Makefile.ruby47
-rw-r--r--pkg/deb/debian.module/unit.example-ruby-app7
-rw-r--r--pkg/deb/debian.module/unit.example-ruby-config16
4 files changed, 75 insertions, 0 deletions
diff --git a/pkg/deb/Makefile b/pkg/deb/Makefile
index ad8e642c..73ff2b8d 100644
--- a/pkg/deb/Makefile
+++ b/pkg/deb/Makefile
@@ -25,6 +25,7 @@ include Makefile.python36
include Makefile.go18
include Makefile.go19
include Makefile.perl
+include Makefile.ruby
endif
# Ubuntu 17.04
@@ -35,6 +36,7 @@ include Makefile.python35
include Makefile.go17
include Makefile.go18
include Makefile.perl
+include Makefile.ruby
endif
# Ubuntu 16.04
@@ -44,6 +46,7 @@ include Makefile.python27
include Makefile.python35
include Makefile.go
include Makefile.perl
+include Makefile.ruby
endif
# Ubuntu 14.04
@@ -61,6 +64,7 @@ include Makefile.python35
include Makefile.go17
include Makefile.go18
include Makefile.perl
+include Makefile.ruby
endif
# Debian 8
@@ -69,6 +73,7 @@ include Makefile.php
include Makefile.python27
include Makefile.python34
include Makefile.perl
+include Makefile.ruby
endif
CONFIGURE_ARGS=\
diff --git a/pkg/deb/Makefile.ruby b/pkg/deb/Makefile.ruby
new file mode 100644
index 00000000..516c41c7
--- /dev/null
+++ b/pkg/deb/Makefile.ruby
@@ -0,0 +1,47 @@
+MODULES+= ruby
+MODULE_SUFFIX_ruby= ruby
+
+MODULE_SUMMARY_ruby= Ruby module for NGINX Unit
+
+MODULE_VERSION_ruby= $(VERSION)
+MODULE_RELEASE_ruby= 1
+
+MODULE_CONFARGS_ruby= ruby
+MODULE_MAKEARGS_ruby= ruby
+MODULE_INSTARGS_ruby= ruby-install
+
+MODULE_SOURCES_ruby= unit.example-ruby-app \
+ unit.example-ruby-config
+
+BUILD_DEPENDS_ruby= ruby-dev ruby-rack
+BUILD_DEPENDS+= $(BUILD_DEPENDS_ruby)
+
+MODULE_BUILD_DEPENDS_ruby=,ruby-dev,ruby-rack
+
+MODULE_DEPENDS_ruby=,ruby-rack
+
+define MODULE_PREINSTALL_ruby
+ mkdir -p debian/unit-ruby/usr/share/doc/unit-ruby/examples
+ install -m 644 -p debian/unit.example-ruby-app debian/unit-ruby/usr/share/doc/unit-ruby/examples/ruby-app.ru
+ install -m 644 -p debian/unit.example-ruby-config debian/unit-ruby/usr/share/doc/unit-ruby/examples/unit.config
+endef
+export MODULE_PREINSTALL_ruby
+
+define MODULE_POST_ruby
+cat <<BANNER
+----------------------------------------------------------------------
+
+The $(MODULE_SUMMARY_ruby) has been installed.
+
+To check out the sample app, run these commands:
+
+ sudo service unit restart
+ sudo service unit loadconfig /usr/share/doc/unit-ruby/examples/unit.config
+ curl http://localhost:8700/
+
+Online documentation is available at https://unit.nginx.org
+
+----------------------------------------------------------------------
+BANNER
+endef
+export MODULE_POST_ruby
diff --git a/pkg/deb/debian.module/unit.example-ruby-app b/pkg/deb/debian.module/unit.example-ruby-app
new file mode 100644
index 00000000..69b015b7
--- /dev/null
+++ b/pkg/deb/debian.module/unit.example-ruby-app
@@ -0,0 +1,7 @@
+app = Proc.new do |env|
+ ['200', {
+ 'Content-Type' => 'text/plain',
+ }, ["Hello from Unit running with Ruby #{RUBY_VERSION}!\n\n"]]
+end
+
+run app
diff --git a/pkg/deb/debian.module/unit.example-ruby-config b/pkg/deb/debian.module/unit.example-ruby-config
new file mode 100644
index 00000000..53eee534
--- /dev/null
+++ b/pkg/deb/debian.module/unit.example-ruby-config
@@ -0,0 +1,16 @@
+{
+ "applications": {
+ "example_ruby": {
+ "type": "ruby",
+ "user": "nobody",
+ "processes": 2,
+ "script": "/usr/share/doc/unit-ruby/examples/ruby-app.ru"
+ }
+ },
+
+ "listeners": {
+ "*:8700": {
+ "application": "example_ruby"
+ }
+ }
+}