sansom 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +10 -0
- data/changelog.md +7 -3
- data/lib/sansom.rb +1 -1
- data/sansom.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 33777ff470f9889d21b8854b1dea67b731a38a32
|
4
|
+
data.tar.gz: 3c0baa22623738bc1668c91328f057e862c9e1e1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e83bcf72135895c959bc11282caab7780243338afdeddd9e0c7c6e6c1150d8251b01191c4f03666f1d9a7cf66f3a5dca04bcd733d5c8da0e29acf52ef2308299
|
7
|
+
data.tar.gz: 1ba7cf9530ea405f9b7c582b664a4f65b7f18942f1b3077de3b7c00e6df339847b55acf14fd6fb3f4f71bdd596b8c0afadbbcc263dc8a92328cef7a250e50bd6
|
data/README.md
CHANGED
@@ -186,6 +186,16 @@ Rails: **34ms**
|
|
186
186
|
|
187
187
|
Hey [Konstantine](https://github.com/rkh), *put that in your pipe and smoke it*.
|
188
188
|
|
189
|
+
Todo
|
190
|
+
-
|
191
|
+
|
192
|
+
1. Returning more than just rack responses:
|
193
|
+
* Strings
|
194
|
+
* Objects
|
195
|
+
* Maybe more syntactic sugar
|
196
|
+
2. (Even) more stability
|
197
|
+
3. \<Your idea here\>
|
198
|
+
|
189
199
|
Contributing
|
190
200
|
-
|
191
201
|
|
data/changelog.md
CHANGED
@@ -41,7 +41,7 @@ Here's an example
|
|
41
41
|
|
42
42
|
0.0.6
|
43
43
|
|
44
|
-
-
|
44
|
+
- `before` block response checking
|
45
45
|
|
46
46
|
0.0.7
|
47
47
|
|
@@ -51,10 +51,14 @@ Here's an example
|
|
51
51
|
0.1.0
|
52
52
|
|
53
53
|
- PUBLIC RELEASE!
|
54
|
-
-
|
54
|
+
- `after` block
|
55
55
|
- Improved routing behavior & speed
|
56
56
|
|
57
57
|
0.1.1
|
58
58
|
|
59
59
|
- Fix bad bug in method_missing
|
60
|
-
- Added better error handling (per-error handling and a generic block that gets called if no specific handler is present)
|
60
|
+
- Added better error handling (per-error handling and a generic block that gets called if no specific handler is present)
|
61
|
+
|
62
|
+
0.1.2
|
63
|
+
|
64
|
+
- Fixed issue with `include` in the `Sansom` class
|
data/lib/sansom.rb
CHANGED
data/sansom.gemspec
CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |s|
|
6
6
|
s.name = "sansom"
|
7
|
-
s.version = "0.1.
|
7
|
+
s.version = "0.1.2"
|
8
8
|
s.authors = ["Nathaniel Symer"]
|
9
9
|
s.email = ["nate@natesymer.com"]
|
10
10
|
s.summary = "Scientific, philosophical, abstract web 'picowork' named after Sansom street in Philly, near where it was made."
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sansom
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nathaniel Symer
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-08-
|
11
|
+
date: 2014-08-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|