grizzly 1.6.0-java

Sign up to get free protection for your applications and to get access to all the features.
data/LICENSE ADDED
@@ -0,0 +1,25 @@
1
+ Copyright (c) 2007, Naoto Takai. All rights reserved.
2
+
3
+ Redistribution and use in source and binary forms, with or without
4
+ modification, are permitted provided that the following conditions
5
+ are met:
6
+ 1. Redistributions of source code must retain the above copyright
7
+ notice, this list of conditions and the following disclaimer.
8
+ 2. Redistributions in binary form must reproduce the above copyright
9
+ notice, this list of conditions and the following disclaimer in the
10
+ documentation and/or other materials provided with the distribution.
11
+ 3. Neither the name of the University nor the names of its contributors
12
+ may be used to endorse or promote products derived from this software
13
+ without specific prior written permission.
14
+
15
+ THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
16
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18
+ ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
19
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21
+ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24
+ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25
+ SUCH DAMAGE.
data/Rakefile ADDED
@@ -0,0 +1,33 @@
1
+ # -*- mode: ruby; coding: utf-8-unix -*-
2
+
3
+ require 'rubygems'
4
+ require 'rake/gempackagetask'
5
+
6
+ spec = Gem::Specification.new do |s|
7
+ s.name = 'grizzly'
8
+ s.summary = 'A fast web server for JRuby on Rails.'
9
+ s.homepage = 'https://grizzly.dev.java.net/'
10
+
11
+ s.platform = 'java'
12
+ s.version = '1.6.0'
13
+
14
+ s.author = 'Naoto Takai'
15
+ s.email = 'takai@recompile.net'
16
+
17
+ s.require_path = 'lib'
18
+ s.autorequire = 'grizzly'
19
+
20
+ s.executables << 'grizzly_server'
21
+ s.files = FileList['lib/**/*.rb',
22
+ 'lib/**/*.jar',
23
+ 'bin/*',
24
+ '[A-Z]*',
25
+ 'test/**/*'].to_a
26
+
27
+ end
28
+
29
+ Rake::GemPackageTask.new(spec) do |pkg|
30
+ pkg.need_zip = true
31
+ pkg.need_tar = true
32
+ end
33
+
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env jruby
2
+ # -*- mode: ruby; coding: utf-8-unix -*-
3
+
4
+ require 'rubygems'
5
+ require 'grizzly'
6
+ require 'java'
7
+
8
+ com.sun.grizzly.standalone.JRuby.main ARGV.to_java(:String)
data/lib/grizzly.rb ADDED
@@ -0,0 +1,5 @@
1
+ # -*- mode: ruby; coding: utf-8-unix -*-
2
+
3
+ Dir.glob(File.dirname(__FILE__) + '/grizzly/*.jar').each do |jar|
4
+ require jar
5
+ end
Binary file
Binary file
Binary file
Binary file
metadata ADDED
@@ -0,0 +1,57 @@
1
+ --- !ruby/object:Gem::Specification
2
+ rubygems_version: 0.9.4
3
+ specification_version: 1
4
+ name: grizzly
5
+ version: !ruby/object:Gem::Version
6
+ version: 1.6.0
7
+ date: 2007-09-18 00:00:00 +09:00
8
+ summary: A fast web server for JRuby on Rails.
9
+ require_paths:
10
+ - lib
11
+ email: takai@recompile.net
12
+ homepage: https://grizzly.dev.java.net/
13
+ rubyforge_project:
14
+ description:
15
+ autorequire: grizzly
16
+ default_executable:
17
+ bindir: bin
18
+ has_rdoc: false
19
+ required_ruby_version: !ruby/object:Gem::Version::Requirement
20
+ requirements:
21
+ - - ">"
22
+ - !ruby/object:Gem::Version
23
+ version: 0.0.0
24
+ version:
25
+ platform: java
26
+ signing_key:
27
+ cert_chain:
28
+ post_install_message:
29
+ authors:
30
+ - Naoto Takai
31
+ files:
32
+ - lib/grizzly.rb
33
+ - lib/grizzly/asm-2.2.3.jar
34
+ - lib/grizzly/backport-util-concurrent-2.0_01_pd.jar
35
+ - lib/grizzly/framework-1.6-SNAPSHOT.jar
36
+ - lib/grizzly/http-1.6-SNAPSHOT.jar
37
+ - lib/grizzly/http-utils-1.6-SNAPSHOT.jar
38
+ - lib/grizzly/jruby-1.6-SNAPSHOT.jar
39
+ - lib/grizzly/jruby-complete-1.0.1.jar
40
+ - lib/grizzly/rcm-1.6-SNAPSHOT.jar
41
+ - bin/grizzly_server
42
+ - LICENSE
43
+ - Rakefile
44
+ test_files: []
45
+
46
+ rdoc_options: []
47
+
48
+ extra_rdoc_files: []
49
+
50
+ executables:
51
+ - grizzly_server
52
+ extensions: []
53
+
54
+ requirements: []
55
+
56
+ dependencies: []
57
+