tiny-rack-flash 0.0.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.
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ MGNiNmE4NjQ3MmY3YTFmYjljN2U5OTFjOTY3ZWY2N2VkMTI2OGIxYg==
5
+ data.tar.gz: !binary |-
6
+ OGZlYTkzOWZiMmE0N2U0MjM5MjVmODFjOWRjM2QyMzVkY2Q4ZGY5MA==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ ODBkNzZmZjYwODliZWUwMTY1YjY3YWUzZDU2ZDUxOThmODgyZTA5ODAwMGNi
10
+ NWZhNWU0ZDFiZmRkOTRkOGNmOGMwNmJjMjdmOWJkNTJhYTNlMzZlM2ZhMTFi
11
+ ZDZjY2UwM2Q0NDI1MWQ4NDMzNjU5OGUxYWIxMmQwMmFkY2Q4ZjM=
12
+ data.tar.gz: !binary |-
13
+ ZGU1Y2U3ZmVhNTc0MTYwMjE3NDYyYTA0MWI2NmI0YzgzMmQzNmI0YmRjNGNm
14
+ ZDFhOWQyOGM4N2QzYzNhZjRhMGE0MGJmZGEyNTA3NTg1OTM3MTNhYjhlYWMz
15
+ NDM4YzcwZWI5NTZjYTZhMDU5ZDAwZTllNzIyMzM2ZTQwYzk3NjQ=
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in tiny-rack-flash.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2015 Jacob Brown
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,42 @@
1
+ # TinyRackFlash
2
+
3
+ A very small flash implementation for Rack apps
4
+
5
+ Works well with Cuba, Sinatra, and others--
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ gem 'tiny-rack-flash'
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install tiny-rack-flash
20
+
21
+ ## Usage
22
+
23
+ Inside your main Rack class (e.g., `Sinatra::Base` or `Cuba`), simply add a
24
+
25
+ require 'tiny_rack_flash'
26
+ include TinyRackFlash
27
+
28
+ The `include` will hook up some Rack middleware for rotating the flash and provide a `flash` method for use in your route handlers.
29
+
30
+ See `tests.rb` for examples.
31
+
32
+ ## Notes
33
+
34
+ This gem's `FlashHash` implementation is taken from Stephen Eley's `FlashHash` implementation at https://github.com/SFEley/sinatra-flash.
35
+
36
+ ## Contributing
37
+
38
+ 1. Fork it
39
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
40
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
41
+ 4. Push to the branch (`git push origin my-new-feature`)
42
+ 5. Create new Pull Request
@@ -0,0 +1,9 @@
1
+ require "bundler/gem_tasks"
2
+
3
+ require 'rake/testtask'
4
+
5
+ Rake::TestTask.new do |t|
6
+ t.libs.push "lib"
7
+ t.test_files = ['tests.rb']
8
+ t.verbose = true
9
+ end
@@ -0,0 +1,72 @@
1
+ require 'delegate'
2
+
3
+ module TinyRackFlash
4
+
5
+ FlashKey = 'tiny.rack.flash'.freeze
6
+ SessionKey = 'rack.session'.freeze
7
+
8
+ # This FlashHash implmentation is taken from Stephen Eley's work
9
+ # at https://github.com/SFEley/sinatra-flash/blob/master/lib/sinatra/flash/hash.rb
10
+ # which in turn is heavily inspired by ActionDispatch::Flash::FlashHash
11
+ # at https://github.com/rails/rails/blob/master/actionpack/lib/action_dispatch/middleware/flash.rb
12
+
13
+ class FlashHash < DelegateClass(Hash)
14
+ attr_reader :now, :next
15
+ def initialize(session)
16
+ @now = session || Hash.new
17
+ @next = Hash.new
18
+ super(@now)
19
+ end
20
+
21
+ def []=(key, value)
22
+ self.next[key] = value
23
+ end
24
+
25
+ def sweep
26
+ @now.replace(@next)
27
+ @next = Hash.new
28
+ @now
29
+ end
30
+
31
+ def keep(key=nil)
32
+ if key
33
+ @next[key] = @now[key]
34
+ else
35
+ @next.merge!(@now)
36
+ end
37
+ end
38
+
39
+ def discard(key=nil)
40
+ if key
41
+ @next.delete(key)
42
+ else
43
+ @next = Hash.new
44
+ end
45
+ end
46
+ end
47
+
48
+ def flash
49
+ env[FlashKey] ||= begin
50
+ session = env[SessionKey]
51
+ FlashHash.new((session ? session[FlashKey] : {}))
52
+ end
53
+ end
54
+
55
+ class Middleware
56
+
57
+ def initialize(app, opts={})
58
+ @app, @opts = app, opts
59
+ end
60
+
61
+ def call(env)
62
+ res = @app.call(env)
63
+ env[SessionKey][FlashKey] = env[FlashKey].next if env[FlashKey]
64
+ res
65
+ end
66
+
67
+ end
68
+
69
+ def self.included(app); app.use Middleware; end
70
+
71
+
72
+ end
@@ -0,0 +1,86 @@
1
+ require 'minitest'
2
+ require 'minitest/autorun'
3
+
4
+ require 'tiny_rack_flash'
5
+ require 'rack'
6
+ require 'rack/test'
7
+
8
+ require 'sinatra/base'
9
+ require "cuba"
10
+
11
+ class SinatraApp < Sinatra::Base
12
+
13
+ include TinyRackFlash
14
+ set :sessions, true
15
+
16
+ get '/' do
17
+ flash[:success] = 'success'
18
+ redirect '/redirect'
19
+ end
20
+
21
+ get '/redirect' do
22
+ flash[:success]
23
+ end
24
+
25
+ get '/show_now' do
26
+ flash.now[:success] = 'ready'
27
+ flash[:success]
28
+ end
29
+ end
30
+
31
+ class CubaApp < Cuba
32
+
33
+ use Rack::Session::Cookie, secret: "__a_very_long_string__"
34
+ include TinyRackFlash
35
+
36
+ define do
37
+ on root do
38
+ flash[:success] = 'success'
39
+ res.redirect '/redirect'
40
+ end
41
+
42
+ on 'redirect' do
43
+ res.write flash[:success]
44
+ end
45
+
46
+ on 'show_now' do
47
+ flash.now[:success] = 'ready'
48
+ res.write flash[:success]
49
+ end
50
+ end
51
+
52
+ end
53
+
54
+ class TinyRackFlashTest < Minitest::Test
55
+
56
+ include Rack::Test::Methods
57
+
58
+ module Common
59
+ def test_shows_flash_when_appropriate
60
+ get '/'
61
+ follow_redirect!
62
+ assert_equal('success', last_response.body)
63
+ end
64
+
65
+ def test_not_shows_flash_when_appropriate
66
+ get '/redirect'
67
+ assert_equal('', last_response.body)
68
+ end
69
+
70
+ def test_shows_flash_now_when_appropriate
71
+ get '/show_now'
72
+ assert_equal('ready', last_response.body)
73
+ end
74
+ end
75
+
76
+ class SinatraAppTest < self
77
+ def app; SinatraApp; end
78
+ include Common
79
+ end
80
+
81
+ class CubaAppTest < self
82
+ def app; CubaApp; end
83
+ include Common
84
+ end
85
+
86
+ end
@@ -0,0 +1,27 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "tiny-rack-flash"
7
+ spec.version = '0.0.1'
8
+ spec.authors = ["Jacob Brown"]
9
+ spec.email = ["j.h.brown@tcu.edu"]
10
+ spec.description = %q{ A tiny flash implementation for Rack apps }
11
+ spec.summary = spec.description
12
+ spec.homepage = ""
13
+ spec.license = "MIT"
14
+
15
+ spec.files = `git ls-files`.split($/)
16
+ spec.executables = []
17
+ spec.test_files = ['tests.rb']
18
+ spec.require_paths = ["lib"]
19
+
20
+ spec.add_dependency "rack"
21
+ spec.add_development_dependency "bundler", "~> 1.3"
22
+ spec.add_development_dependency "minitest"
23
+ spec.add_development_dependency "rack-test"
24
+ spec.add_development_dependency "rake"
25
+ spec.add_development_dependency "sinatra"
26
+ spec.add_development_dependency "cuba"
27
+ end
metadata ADDED
@@ -0,0 +1,151 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: tiny-rack-flash
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Jacob Brown
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-01-27 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rack
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ! '>='
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ! '>='
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '1.3'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: '1.3'
41
+ - !ruby/object:Gem::Dependency
42
+ name: minitest
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ! '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ! '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rack-test
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ! '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rake
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ! '>='
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ! '>='
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: sinatra
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ! '>='
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ! '>='
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: cuba
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ! '>='
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ! '>='
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ description: ! ' A tiny flash implementation for Rack apps '
112
+ email:
113
+ - j.h.brown@tcu.edu
114
+ executables: []
115
+ extensions: []
116
+ extra_rdoc_files: []
117
+ files:
118
+ - .gitignore
119
+ - Gemfile
120
+ - LICENSE.txt
121
+ - README.md
122
+ - Rakefile
123
+ - lib/tiny_rack_flash.rb
124
+ - tests.rb
125
+ - tiny-rack-flash.gemspec
126
+ homepage: ''
127
+ licenses:
128
+ - MIT
129
+ metadata: {}
130
+ post_install_message:
131
+ rdoc_options: []
132
+ require_paths:
133
+ - lib
134
+ required_ruby_version: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ! '>='
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ required_rubygems_version: !ruby/object:Gem::Requirement
140
+ requirements:
141
+ - - ! '>='
142
+ - !ruby/object:Gem::Version
143
+ version: '0'
144
+ requirements: []
145
+ rubyforge_project:
146
+ rubygems_version: 2.4.1
147
+ signing_key:
148
+ specification_version: 4
149
+ summary: A tiny flash implementation for Rack apps
150
+ test_files:
151
+ - tests.rb