fastr 0.0.3 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
metadata CHANGED
@@ -1,13 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastr
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
5
4
  prerelease: false
6
5
  segments:
7
6
  - 0
7
+ - 1
8
8
  - 0
9
- - 3
10
- version: 0.0.3
9
+ version: 0.1.0
11
10
  platform: ruby
12
11
  authors:
13
12
  - Chris Moos
@@ -15,7 +14,7 @@ autorequire:
15
14
  bindir: bin
16
15
  cert_chain: []
17
16
 
18
- date: 2010-06-20 00:00:00 -07:00
17
+ date: 2010-12-26 00:00:00 -07:00
19
18
  default_executable: fastr
20
19
  dependencies:
21
20
  - !ruby/object:Gem::Dependency
@@ -26,7 +25,6 @@ dependencies:
26
25
  requirements:
27
26
  - - ">="
28
27
  - !ruby/object:Gem::Version
29
- hash: 47
30
28
  segments:
31
29
  - 1
32
30
  - 16
@@ -41,7 +39,6 @@ dependencies:
41
39
  requirements:
42
40
  - - ">="
43
41
  - !ruby/object:Gem::Version
44
- hash: 3
45
42
  segments:
46
43
  - 0
47
44
  version: "0"
@@ -55,12 +52,50 @@ dependencies:
55
52
  requirements:
56
53
  - - ">="
57
54
  - !ruby/object:Gem::Version
58
- hash: 3
59
55
  segments:
60
56
  - 0
61
57
  version: "0"
62
58
  type: :runtime
63
59
  version_requirements: *id003
60
+ - !ruby/object:Gem::Dependency
61
+ name: haml
62
+ prerelease: false
63
+ requirement: &id004 !ruby/object:Gem::Requirement
64
+ none: false
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ segments:
69
+ - 0
70
+ version: "0"
71
+ type: :runtime
72
+ version_requirements: *id004
73
+ - !ruby/object:Gem::Dependency
74
+ name: shoulda
75
+ prerelease: false
76
+ requirement: &id005 !ruby/object:Gem::Requirement
77
+ none: false
78
+ requirements:
79
+ - - ">="
80
+ - !ruby/object:Gem::Version
81
+ segments:
82
+ - 0
83
+ version: "0"
84
+ type: :development
85
+ version_requirements: *id005
86
+ - !ruby/object:Gem::Dependency
87
+ name: mocha
88
+ prerelease: false
89
+ requirement: &id006 !ruby/object:Gem::Requirement
90
+ none: false
91
+ requirements:
92
+ - - ">="
93
+ - !ruby/object:Gem::Version
94
+ segments:
95
+ - 0
96
+ version: "0"
97
+ type: :development
98
+ version_requirements: *id006
64
99
  description: A fast, micro-framework for Ruby that should be run under EventMachine servers (thin)
65
100
  email: chris@tech9computers.com
66
101
  executables:
@@ -73,26 +108,40 @@ extra_rdoc_files:
73
108
  files:
74
109
  - lib/fastr.rb
75
110
  - lib/fastr/application.rb
111
+ - lib/fastr/async.rb
76
112
  - lib/fastr/controller.rb
113
+ - lib/fastr/cookie.rb
77
114
  - lib/fastr/deferrable.rb
115
+ - lib/fastr/dispatch.rb
78
116
  - lib/fastr/exception.rb
79
117
  - lib/fastr/extensions/string.rb
80
118
  - lib/fastr/filter.rb
119
+ - lib/fastr/http.rb
81
120
  - lib/fastr/logger.rb
82
121
  - lib/fastr/plugin.rb
83
122
  - lib/fastr/router.rb
84
- - lib/fastr/session.rb
85
- - lib/fastr/session/cookie.rb
86
123
  - lib/fastr/settings.rb
87
124
  - lib/fastr/template.rb
125
+ - lib/fastr/template/erubis.rb
126
+ - lib/fastr/template/haml.rb
127
+ - lib/fastr/test.rb
128
+ - lib/fastr/test/application.rb
129
+ - lib/fastr/test/controller.rb
130
+ - lib/fastr/test/logger.rb
131
+ - lib/fastr/test/tasks.rb
132
+ - lib/fastr/test/tasks/test.rake
88
133
  - LICENSE
89
134
  - README.rdoc
90
135
  - test/fastr_app/app/config/routes.rb
136
+ - test/fastr_app/app/config/settings.rb
137
+ - test/fastr_app/app/controllers/dispatch.rb
91
138
  - test/fastr_app/app/controllers/fastr_app_controller.rb
92
139
  - test/helper.rb
93
140
  - test/test_application.rb
141
+ - test/test_cookie.rb
94
142
  - test/test_deferrable.rb
95
143
  - test/test_deferrable_response.rb
144
+ - test/test_dispatch.rb
96
145
  - test/test_router.rb
97
146
  - bin/fastr
98
147
  has_rdoc: true
@@ -109,7 +158,6 @@ required_ruby_version: !ruby/object:Gem::Requirement
109
158
  requirements:
110
159
  - - ">="
111
160
  - !ruby/object:Gem::Version
112
- hash: 3
113
161
  segments:
114
162
  - 0
115
163
  version: "0"
@@ -118,7 +166,6 @@ required_rubygems_version: !ruby/object:Gem::Requirement
118
166
  requirements:
119
167
  - - ">="
120
168
  - !ruby/object:Gem::Version
121
- hash: 3
122
169
  segments:
123
170
  - 0
124
171
  version: "0"
@@ -131,9 +178,13 @@ specification_version: 3
131
178
  summary: Another rack web framework for Ruby.
132
179
  test_files:
133
180
  - test/fastr_app/app/config/routes.rb
181
+ - test/fastr_app/app/config/settings.rb
182
+ - test/fastr_app/app/controllers/dispatch.rb
134
183
  - test/fastr_app/app/controllers/fastr_app_controller.rb
135
184
  - test/helper.rb
136
185
  - test/test_application.rb
186
+ - test/test_cookie.rb
137
187
  - test/test_deferrable.rb
138
188
  - test/test_deferrable_response.rb
189
+ - test/test_dispatch.rb
139
190
  - test/test_router.rb
data/lib/fastr/session.rb DELETED
@@ -1,5 +0,0 @@
1
- module Fastr
2
- module Session
3
-
4
- end
5
- end
File without changes