strelka 0.0.1.pre.321 → 0.0.1.pre.322
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.
- data.tar.gz.sig +0 -0
- data/ChangeLog +13 -3
- data/bin/strelka +4 -9
- metadata +2 -2
- metadata.gz.sig +0 -0
data.tar.gz.sig
CHANGED
|
Binary file
|
data/ChangeLog
CHANGED
|
@@ -1,8 +1,18 @@
|
|
|
1
1
|
2012-09-28 Michael Granger <ged@FaerieMUD.org>
|
|
2
2
|
|
|
3
|
+
* lib/strelka/cookie.rb:
|
|
4
|
+
Removed a bunch of chatty debugging from Strelka::Cookie.
|
|
5
|
+
[57be160cf261] [tip]
|
|
6
|
+
|
|
7
|
+
* lib/strelka/authprovider.rb, lib/strelka/authprovider/basic.rb,
|
|
8
|
+
spec/strelka/authprovider_spec.rb:
|
|
9
|
+
Add a hook to Strelka::AuthProvider for authentication being
|
|
10
|
+
established.
|
|
11
|
+
[e76e4c04bdaf]
|
|
12
|
+
|
|
3
13
|
* lib/strelka/cookie.rb:
|
|
4
14
|
Remove some chatty debugging from Strelka::Cookie
|
|
5
|
-
[d85c5f7728fe]
|
|
15
|
+
[d85c5f7728fe]
|
|
6
16
|
|
|
7
17
|
* Rakefile, manual/layouts/default.erb, manual/lib/api-filter.rb,
|
|
8
18
|
manual/lib/editorial-filter.rb, manual/lib/examples-filter.rb,
|
|
@@ -141,7 +151,7 @@
|
|
|
141
151
|
|
|
142
152
|
Got most of the default plugins covered at least minimally. Split
|
|
143
153
|
out the rest of the manual into RDoc pages.
|
|
144
|
-
[41ef7a20e7cb]
|
|
154
|
+
[41ef7a20e7cb]
|
|
145
155
|
|
|
146
156
|
2012-08-24 Mahlon E. Smith <mahlon@martini.nu>
|
|
147
157
|
|
|
@@ -1148,7 +1158,7 @@
|
|
|
1148
1158
|
|
|
1149
1159
|
* lib/strelka/app/errors.rb, spec/strelka/app/errors_spec.rb:
|
|
1150
1160
|
Add documentation for the Errors plugin, improve test coverage.
|
|
1151
|
-
[ff3ef6e5a7a1]
|
|
1161
|
+
[ff3ef6e5a7a1]
|
|
1152
1162
|
|
|
1153
1163
|
* Manifest.txt:
|
|
1154
1164
|
Add session files to the manifest
|
data/bin/strelka
CHANGED
|
@@ -293,16 +293,11 @@ class Strelka::CLICommand
|
|
|
293
293
|
appname,
|
|
294
294
|
gemname == '' ? '' : " from the #{gemname} gem"
|
|
295
295
|
]
|
|
296
|
-
fork do
|
|
297
|
-
self.log.debug " in the child."
|
|
298
|
-
apps = Strelka::App.load( path )
|
|
299
|
-
Strelka.load_config( self.options.config ) if self.options.config
|
|
300
|
-
self.log.debug " loaded: %p" % [ apps ]
|
|
301
|
-
apps.first.run
|
|
302
|
-
end
|
|
303
296
|
|
|
304
|
-
|
|
305
|
-
|
|
297
|
+
apps = Strelka::App.load( path )
|
|
298
|
+
Strelka.load_config( self.options.config ) if self.options.config
|
|
299
|
+
self.log.debug " loaded: %p" % [ apps ]
|
|
300
|
+
apps.first.run
|
|
306
301
|
end
|
|
307
302
|
help :start, "Start a Strelka app"
|
|
308
303
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: strelka
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.1.pre.
|
|
4
|
+
version: 0.0.1.pre.322
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -36,7 +36,7 @@ cert_chain:
|
|
|
36
36
|
YUhDS0xaZFNLai9SSHVUT3QrZ2JsUmV4OEZBaDhOZUEKY21saFhlNDZwWk5K
|
|
37
37
|
Z1dLYnhaYWg4NWpJang5NWhSOHZPSStOQU01aUg5a09xSzEzRHJ4YWNUS1Bo
|
|
38
38
|
cWo1UGp3RgotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==
|
|
39
|
-
date: 2012-
|
|
39
|
+
date: 2012-10-03 00:00:00.000000000 Z
|
|
40
40
|
dependencies:
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: configurability
|
metadata.gz.sig
CHANGED
|
Binary file
|