deimos 0.2.0 → 0.2.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.
- checksums.yaml +4 -4
- data/README.md +6 -0
- data/lib/deimos/version.rb +1 -1
- data/lib/deimos.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8a91967e23ecb309e39d2a876f09f167a4b1b92be0813a8c7de2540dda911799
|
|
4
|
+
data.tar.gz: 4ab5a5bf21553b8bbd2a8317bd2db2e5bda74815e810e24a0dcf142a217b0e33
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 71b9201f19630e8365c450a53f6fbe91ea2faf9f5dd0a9a7fe8699b1fa03806b73b9c1dad4eb70c2690d0174f2179ecfe25aba5538e39a1890f4267108892329
|
|
7
|
+
data.tar.gz: f270b5ef357adea514a5eb12ca067b8a444fa94cf1a002bc5246fa3f77bc86da0e3f36f36fdd0694b559f5a53883f9e5dbebe43df7e4dd971a6cc1725cbd143a
|
data/README.md
CHANGED
|
@@ -24,6 +24,12 @@ Or install it yourself as:
|
|
|
24
24
|
|
|
25
25
|
## Usage
|
|
26
26
|
|
|
27
|
+
After the application is configured (see below), you can boot it by calling the following. Place this in an initializer at some point after the configuration directives.
|
|
28
|
+
|
|
29
|
+
```ruby
|
|
30
|
+
Deimos.boot! # Will execute a webrick HTTP handler in another thread
|
|
31
|
+
```
|
|
32
|
+
|
|
27
33
|
### Configuration
|
|
28
34
|
|
|
29
35
|
```ruby
|
data/lib/deimos/version.rb
CHANGED
data/lib/deimos.rb
CHANGED