about summary refs log tree commit homepage
diff options
context:
space:
mode:
-rw-r--r--Manifest6
-rw-r--r--examples/sinatra/README21
-rw-r--r--examples/sinatra/sinatra_example.rb7
-rwxr-xr-xexamples/sinatra/unicorn-sinatra-example13
4 files changed, 3 insertions, 44 deletions
diff --git a/Manifest b/Manifest
index 027a4fe..5586499 100644
--- a/Manifest
+++ b/Manifest
@@ -1,16 +1,16 @@
+.document
 .gitignore
 CHANGELOG
 CONTRIBUTORS
+DESIGN
 GNUmakefile
 LICENSE
 Manifest
 README
 Rakefile
+SIGNALS
 TODO
 bin/unicorn
-examples/sinatra/README
-examples/sinatra/sinatra_example.rb
-examples/sinatra/unicorn-sinatra-example
 ext/unicorn/http11/ext_help.h
 ext/unicorn/http11/extconf.rb
 ext/unicorn/http11/http11.c
diff --git a/examples/sinatra/README b/examples/sinatra/README
deleted file mode 100644
index 2928d16..0000000
--- a/examples/sinatra/README
+++ /dev/null
@@ -1,21 +0,0 @@
-This is an ultra simple Sinatra setup.
-
-sinatra_example.rb
-
-  This is a generic Sinatra application, absolutely nothing needs to be
-  done to make this run with this application to run with Unicorn.
-
-
-unicorn-sinatra-example
-
-  this is the config file/application to execute with unicorn.  You can
-  run it either standalone if "unicorn" is in your path, or by running:
-
-  "unicorn unicorn-sinatra-example"
-
-
-These examples do not load RubyGems.  You'll have to set your RUBYLIB
-environment variable appropriately for running these examples, for me
-it's this:
-
-$HOME/gems/rack-0.9.1/lib:$HOME/gems/sinatra-0.9.0.2/lib:.
diff --git a/examples/sinatra/sinatra_example.rb b/examples/sinatra/sinatra_example.rb
deleted file mode 100644
index 70d05c2..0000000
--- a/examples/sinatra/sinatra_example.rb
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/home/ew/bin/ruby
-# this is a standalone Sinatra application, there is absolutely NOTHING
-# special that has to be done in this file for running with Unicorn,
-# instead take a look at the unicorn-sinatra-example script in this
-# directory
-require 'sinatra'
-get('/') { "hello world\n" }
diff --git a/examples/sinatra/unicorn-sinatra-example b/examples/sinatra/unicorn-sinatra-example
deleted file mode 100755
index 3472d56..0000000
--- a/examples/sinatra/unicorn-sinatra-example
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/home/ew/bin/ruby
-# putting unicorn in the shebang won't work because unicorn itself is
-# a ruby script, so the following is the next best thing:
-exec('unicorn', $0) if $0 == __FILE__
-
-# the below script is a standalone Sinatra application; absolutely
-# nothing special needs to be done in this Sinatra app for running
-# with Unicorn
-require 'sinatra_example'
-
-# the following hash needs to be the last statement, as unicorn
-# will eval this entire file
-{ :app => Sinatra::Application }