ajp-rails 0.0.0 → 0.0.1

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 (3) hide show
  1. data/ajp-rails.gemspec +4 -2
  2. data/bin/ajp-rails.rb +1 -1
  3. metadata +21 -7
@@ -1,12 +1,14 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = "ajp-rails"
3
- spec.version = "0.0.0"
3
+ spec.version = "0.0.1"
4
4
  spec.required_ruby_version = ">= 1.8.3"
5
- spec.dependencies << ['ruby-ajp', '>= 0.2.0'] << ['rails', '>= 0.14']
5
+ spec.add_dependency('ruby-ajp', '>= 0.2.0')
6
+ spec.add_dependency('rails', '>= 0.14')
6
7
  spec.summary = "Ruby on Rails Runner, which uses AJP(Apache JServ Protocol) to cooperate with a HTTPd, instead of CGI or FastCGI"
7
8
  spec.author = "Yugui"
8
9
  spec.email = "yugui@yugui.sakura.ne.jp"
9
10
  spec.rubyforge_project = "ruby-ajp"
11
+ spec.executables << 'ajp-rails.rb'
10
12
  spec.files =
11
13
  Dir.glob("lib/**/*.rb") +
12
14
  Dir.glob("bin/**/*.rb") +
@@ -1,4 +1,4 @@
1
- #!/usr/bin/ruby
1
+ #! /usr/bin/ruby1.8
2
2
 
3
3
  require 'rubygems' rescue nil
4
4
  load 'ajp-rails/rails-runner.rb'
metadata CHANGED
@@ -3,7 +3,7 @@ rubygems_version: 0.8.11
3
3
  specification_version: 1
4
4
  name: ajp-rails
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.0.0
6
+ version: 0.0.1
7
7
  date: 2006-01-24 00:00:00 +09:00
8
8
  summary: Ruby on Rails Runner, which uses AJP(Apache JServ Protocol) to cooperate with a HTTPd, instead of CGI or FastCGI
9
9
  require_paths:
@@ -51,14 +51,28 @@ rdoc_options: []
51
51
 
52
52
  extra_rdoc_files: []
53
53
 
54
- executables: []
55
-
54
+ executables:
55
+ - ajp-rails.rb
56
56
  extensions: []
57
57
 
58
58
  requirements: []
59
59
 
60
60
  dependencies:
61
- - - ruby-ajp
62
- - ">= 0.2.0"
63
- - - rails
64
- - ">= 0.14"
61
+ - !ruby/object:Gem::Dependency
62
+ name: ruby-ajp
63
+ version_requirement:
64
+ version_requirements: !ruby/object:Gem::Version::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: 0.2.0
69
+ version:
70
+ - !ruby/object:Gem::Dependency
71
+ name: rails
72
+ version_requirement:
73
+ version_requirements: !ruby/object:Gem::Version::Requirement
74
+ requirements:
75
+ - - ">="
76
+ - !ruby/object:Gem::Version
77
+ version: "0.14"
78
+ version: