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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 70bf637155b8ff9a3f71379904ba52f0bd414162
4
- data.tar.gz: b78fa7ac858a49600f9b6e4f356766e95402f7a6
3
+ metadata.gz: 3974c6ef1162294b3a2355505dd86fc78de96133
4
+ data.tar.gz: 763f8102240e220d3f3566e4d307b11b76d87539
5
5
  SHA512:
6
- metadata.gz: 55db0770c0e3dadd8cc448309bbf1c4e259060c3822e707a5dd1b231dce6e42220ca1dfeb749f1239b9e35218f05e0bcb1ddd96e476200e668fb9ef0be0a3884
7
- data.tar.gz: 60047d0668a7cc697698ecf080c60e039c3707e71e0bcaa00b44fe0ca4d4760224d942a0d08b82bd95d335b7a05b9e773aa64dea5fad4c43186b0811ea2a6b73
6
+ metadata.gz: f4c04318391fdb95f2dcb4f4a4e80ca2e5b705e88be4863e70b9ab22f8ad22fbbbc8604531e0a4cff71bc874aef3197a8faa38fe9e6b98835f07504a2efcabd9
7
+ data.tar.gz: 382cf47afd2594ab96a66615605d591f5106d2638d74c9dbe6fef7023c0f15712b791863d0f5e2b651ad0d72879b1afd877b71ef3462e833d97bb8ddbe56ae1a
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- a_series_of_tubes (1.1.1)
4
+ a_series_of_tubes (1.1.2)
5
5
  json
6
6
  rack
7
7
  sqlite3
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 four main components to **A Series of Tubes**:
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.
@@ -1,3 +1,3 @@
1
1
  module ASeriesOfTubes
2
- VERSION = "1.1.1"
2
+ VERSION = "1.1.2"
3
3
  end
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.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-18 00:00:00.000000000 Z
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