rack-state 0.0.1 → 0.0.2

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.
Files changed (2) hide show
  1. data/lib/rack/state.rb +1 -1
  2. metadata +9 -9
@@ -16,7 +16,7 @@ module Rack
16
16
  #
17
17
  class State
18
18
 
19
- VERSION = '0.0.1'
19
+ VERSION = '0.0.2'
20
20
 
21
21
  #
22
22
  # == Middleware Options
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rack-state
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-09-22 00:00:00.000000000 Z
12
+ date: 2013-09-23 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rack
@@ -47,16 +47,16 @@ description: ! 'Rack::State is middleware that securely stores and manages objec
47
47
  state.
48
48
 
49
49
 
50
- It is similar to Rack::Session, but provides state management for multiple
50
+ Applications use the Manager API to set, get, and delete state of any object
51
51
 
52
- objects with independent control of the visibility, security, and storage of
52
+ that requires persistence in a stateless environment.
53
53
 
54
- each object''s state.
55
54
 
55
+ Rack::State is similar to Rack::Session, but provides state management for
56
56
 
57
- Applications use the Manager API to _set_, _get_, and _delete_ state of
57
+ multiple objects with independent control of the visibility, security, and
58
58
 
59
- any object that requires persistence in a stateless environment.
59
+ storage of each object''s state.
60
60
 
61
61
  '
62
62
  email: pachl@ecentryx.com
@@ -71,7 +71,7 @@ files:
71
71
  - spec/spec_state_store_file.rb
72
72
  - spec/spec_state_store_memory.rb
73
73
  - spec/spec_state_store_postgres.rb
74
- homepage: https://rubygems.org/gems/rack-state
74
+ homepage: http://pachl.us/code/rack-state
75
75
  licenses:
76
76
  - ISC
77
77
  post_install_message:
@@ -95,7 +95,7 @@ rubyforge_project:
95
95
  rubygems_version: 1.8.23
96
96
  signing_key:
97
97
  specification_version: 3
98
- summary: Secure & Modular State Management
98
+ summary: Secure and Modular State Management
99
99
  test_files:
100
100
  - spec/spec_state.rb
101
101
  - spec/spec_state_store_file.rb