a_series_of_tubes 1.1.1 → 1.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +5 -1
- data/lib/a_series_of_tubes/version.rb +1 -1
- data/pkg/a_series_of_tubes-1.1.1.gem +0 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3974c6ef1162294b3a2355505dd86fc78de96133
|
4
|
+
data.tar.gz: 763f8102240e220d3f3566e4d307b11b76d87539
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f4c04318391fdb95f2dcb4f4a4e80ca2e5b705e88be4863e70b9ab22f8ad22fbbbc8604531e0a4cff71bc874aef3197a8faa38fe9e6b98835f07504a2efcabd9
|
7
|
+
data.tar.gz: 382cf47afd2594ab96a66615605d591f5106d2638d74c9dbe6fef7023c0f15712b791863d0f5e2b651ad0d72879b1afd877b71ef3462e833d97bb8ddbe56ae1a
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -24,7 +24,7 @@ Or install it yourself as:
|
|
24
24
|
|
25
25
|
**A Series of Tubes** is a toolset for creating simple RESTful websites in Ruby. If you are interested in learning how to use it in your project, check out the [Sample Server](http://www.github.com/danmakenoise/a_series_of_tubes_demo) for a suggested application structure.
|
26
26
|
|
27
|
-
There are
|
27
|
+
There are five main components to **A Series of Tubes**:
|
28
28
|
|
29
29
|
### Tubes
|
30
30
|
|
@@ -67,6 +67,10 @@ end
|
|
67
67
|
|
68
68
|
When a `Tube` gets matched to the `index` action, an instance variable `@cats` is created and is populated with any data in the session cookie under the key `cats`. This is another important feature of the `TubeController`! You can user `session[KEY]` to store data to the session cookies of the site. Similarly, there is `flash[KEY]` and `flash.now[KEY]`, which can be used to only store information for the next render or redirect.
|
69
69
|
|
70
|
+
### TubeRecord
|
71
|
+
|
72
|
+
This module contains an ORM for working with SQL Databases. Take a look at the sample server to see it in action!
|
73
|
+
|
70
74
|
### TubeSupport
|
71
75
|
|
72
76
|
This module just contains helper functions for the entire gem.
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: a_series_of_tubes
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dan Phillips
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-04-
|
11
|
+
date: 2016-04-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -133,6 +133,7 @@ files:
|
|
133
133
|
- pkg/a_series_of_tubes-1.0.0.gem
|
134
134
|
- pkg/a_series_of_tubes-1.0.1.gem
|
135
135
|
- pkg/a_series_of_tubes-1.1.0.gem
|
136
|
+
- pkg/a_series_of_tubes-1.1.1.gem
|
136
137
|
homepage: http://www.github.com/danmakenoise/a_series_of_tubes
|
137
138
|
licenses:
|
138
139
|
- MIT
|