cgi-spa 0.3.3 → 0.3.4

Sign up to get free protection for your applications and to get access to all the features.
data/cgi-spa.gemspec CHANGED
@@ -1,31 +1,27 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
 
3
3
  Gem::Specification.new do |s|
4
- s.name = %q{cgi-spa}
5
- s.version = "0.3.3"
4
+ s.name = "cgi-spa"
5
+ s.version = "0.3.4"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Sam Ruby"]
9
- s.date = %q{2009-12-27}
10
- s.description = %q{ Provides a number of globals, helper methods, and monkey patches which
11
- simplify the development of single page applications in the form of
12
- CGI scripts.
13
- }
14
- s.email = %q{rubys@intertwingly.net}
9
+ s.date = "2011-10-29"
10
+ s.description = " Provides a number of globals, helper methods, and monkey patches which\n simplify the development of single page applications in the form of\n CGI scripts.\n"
11
+ s.email = "rubys@intertwingly.net"
15
12
  s.extra_rdoc_files = ["COPYING", "README", "lib/cgi-spa.rb", "lib/cgi-spa/builder.rb", "lib/cgi-spa/cgi-methods.rb", "lib/cgi-spa/environment.rb", "lib/cgi-spa/html-methods.rb", "lib/cgi-spa/installation.rb", "lib/cgi-spa/job-control.rb", "lib/cgi-spa/version.rb"]
16
13
  s.files = ["COPYING", "Manifest", "README", "Rakefile", "cgi-spa.gemspec", "lib/cgi-spa.rb", "lib/cgi-spa/builder.rb", "lib/cgi-spa/cgi-methods.rb", "lib/cgi-spa/environment.rb", "lib/cgi-spa/html-methods.rb", "lib/cgi-spa/installation.rb", "lib/cgi-spa/job-control.rb", "lib/cgi-spa/version.rb"]
17
- s.homepage = %q{http://github.com/rubys/cgi-spa}
14
+ s.homepage = "http://github.com/rubys/cgi-spa"
18
15
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Cgi-spa", "--main", "README"]
19
16
  s.require_paths = ["lib"]
20
- s.rubyforge_project = %q{cgi-spa}
21
- s.rubygems_version = %q{1.3.5}
22
- s.summary = %q{CGI Single Page Applications}
17
+ s.rubyforge_project = "cgi-spa"
18
+ s.rubygems_version = "1.8.11"
19
+ s.summary = "CGI Single Page Applications"
23
20
 
24
21
  if s.respond_to? :specification_version then
25
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
26
22
  s.specification_version = 3
27
23
 
28
- if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
24
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
29
25
  s.add_runtime_dependency(%q<builder>, [">= 0"])
30
26
  s.add_runtime_dependency(%q<json>, [">= 0"])
31
27
  else
@@ -23,7 +23,7 @@ module Builder
23
23
  self << data
24
24
  end
25
25
 
26
- _newline unless data =~ /\s$/
26
+ _newline unless data =~ /\n\Z/
27
27
  end
28
28
  end
29
29
 
@@ -2,7 +2,7 @@ module CgiSpa
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 3
5
- TINY = 3
5
+ TINY = 4
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
metadata CHANGED
@@ -1,7 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cgi-spa
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ hash: 27
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 3
9
+ - 4
10
+ version: 0.3.4
5
11
  platform: ruby
6
12
  authors:
7
13
  - Sam Ruby
@@ -9,29 +15,36 @@ autorequire:
9
15
  bindir: bin
10
16
  cert_chain: []
11
17
 
12
- date: 2009-12-27 00:00:00 -05:00
13
- default_executable:
18
+ date: 2011-10-29 00:00:00 Z
14
19
  dependencies:
15
20
  - !ruby/object:Gem::Dependency
16
21
  name: builder
17
- type: :runtime
18
- version_requirement:
19
- version_requirements: !ruby/object:Gem::Requirement
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
20
25
  requirements:
21
26
  - - ">="
22
27
  - !ruby/object:Gem::Version
28
+ hash: 3
29
+ segments:
30
+ - 0
23
31
  version: "0"
24
- version:
32
+ type: :runtime
33
+ version_requirements: *id001
25
34
  - !ruby/object:Gem::Dependency
26
35
  name: json
27
- type: :runtime
28
- version_requirement:
29
- version_requirements: !ruby/object:Gem::Requirement
36
+ prerelease: false
37
+ requirement: &id002 !ruby/object:Gem::Requirement
38
+ none: false
30
39
  requirements:
31
40
  - - ">="
32
41
  - !ruby/object:Gem::Version
42
+ hash: 3
43
+ segments:
44
+ - 0
33
45
  version: "0"
34
- version:
46
+ type: :runtime
47
+ version_requirements: *id002
35
48
  description: " Provides a number of globals, helper methods, and monkey patches which\n simplify the development of single page applications in the form of\n CGI scripts.\n"
36
49
  email: rubys@intertwingly.net
37
50
  executables: []
@@ -63,7 +76,6 @@ files:
63
76
  - lib/cgi-spa/installation.rb
64
77
  - lib/cgi-spa/job-control.rb
65
78
  - lib/cgi-spa/version.rb
66
- has_rdoc: true
67
79
  homepage: http://github.com/rubys/cgi-spa
68
80
  licenses: []
69
81
 
@@ -78,21 +90,28 @@ rdoc_options:
78
90
  require_paths:
79
91
  - lib
80
92
  required_ruby_version: !ruby/object:Gem::Requirement
93
+ none: false
81
94
  requirements:
82
95
  - - ">="
83
96
  - !ruby/object:Gem::Version
97
+ hash: 3
98
+ segments:
99
+ - 0
84
100
  version: "0"
85
- version:
86
101
  required_rubygems_version: !ruby/object:Gem::Requirement
102
+ none: false
87
103
  requirements:
88
104
  - - ">="
89
105
  - !ruby/object:Gem::Version
106
+ hash: 11
107
+ segments:
108
+ - 1
109
+ - 2
90
110
  version: "1.2"
91
- version:
92
111
  requirements: []
93
112
 
94
113
  rubyforge_project: cgi-spa
95
- rubygems_version: 1.3.5
114
+ rubygems_version: 1.8.11
96
115
  signing_key:
97
116
  specification_version: 3
98
117
  summary: CGI Single Page Applications