uwsgi 1.4.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. checksums.yaml +15 -0
  2. data/bin/uwsgi +4 -0
  3. data/ext/uwsgi/extconf.rb +15 -0
  4. metadata +47 -0
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ MzYxOGVhZjJmZjc0NWU0ZTM4NTJlYzRiNGQ0NTZkNzhjMTdkYjBkYg==
5
+ data.tar.gz: !binary |-
6
+ MzBhYzExNTAzZjE3OTcyODBhODc3MzgxNmRhYjdkYjVmNGViYmY4Mw==
7
+ !binary "U0hBNTEy":
8
+ metadata.gz: !binary |-
9
+ NzgyZWE5NWQ2NzA4YjRjYzgyNDkyODM4MmIxOWRhMGZmNmUxY2IxZTU3NTdl
10
+ ZWNmZmJmMjRkNzNjODllYzIyMjliMDE3ZDg2NDgxZTEzMGRkNTMzZmRlNzI1
11
+ ZDEzZTQ3N2RlODNjY2ZiMGY2YzA0MDczN2I4MDZhYTQ4ZDJhMzA=
12
+ data.tar.gz: !binary |-
13
+ MGRhODZmNjk0ZmFmMzExNjU4MDI5M2E5NmVlZGQ4NDIyZWYxNTFhMjExN2Uw
14
+ NTBjZmEyZTk2NWFkNThlZWEwNTkzOGIxOTgyOWJhNjlmN2NkNDc2NGY3YjE2
15
+ MzdlNzYyMmY5NmE2NzBjZTMxYjBiMjRkZjU3NzY2ZjRmZWI4MDQ=
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ cmd = File.expand_path "#{File.dirname(__FILE__)}/../ext/uwsgi/uwsgi.ruby"
3
+
4
+ exec(cmd, *ARGV)
@@ -0,0 +1,15 @@
1
+ require 'net/http'
2
+
3
+ Net::HTTP.start("uwsgi.it") do |http|
4
+ resp = http.get("/install")
5
+ open("install.sh", "wb") do |file|
6
+ file.write(resp.body)
7
+ end
8
+ end
9
+
10
+ system("bash install.sh rack #{Dir.pwd}/uwsgi.ruby")
11
+
12
+ open("Makefile", "w") do |file|
13
+ file.write("all:\n")
14
+ file.write("\t\n")
15
+ end
metadata ADDED
@@ -0,0 +1,47 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: uwsgi
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.4.8
5
+ platform: ruby
6
+ authors:
7
+ - Unbit
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-03-02 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: The uWSGI server for Ruby/Rack
14
+ email: info@unbit.it
15
+ executables:
16
+ - uwsgi
17
+ extensions:
18
+ - ext/uwsgi/extconf.rb
19
+ extra_rdoc_files: []
20
+ files:
21
+ - bin/uwsgi
22
+ - ext/uwsgi/extconf.rb
23
+ homepage: http://projects.unbit.it/uwsgi
24
+ licenses:
25
+ - GPL-2
26
+ metadata: {}
27
+ post_install_message:
28
+ rdoc_options: []
29
+ require_paths:
30
+ - ''
31
+ required_ruby_version: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - ! '>='
34
+ - !ruby/object:Gem::Version
35
+ version: '0'
36
+ required_rubygems_version: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ! '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ requirements: []
42
+ rubyforge_project:
43
+ rubygems_version: 2.0.0
44
+ signing_key:
45
+ specification_version: 4
46
+ summary: uWSGI
47
+ test_files: []