sinatra-sessionography 0.0.2 → 0.1.0
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.
- data/.document +2 -2
- data/README.markdown +6 -4
- data/VERSION +1 -1
- data/sinatra-sessionography.gemspec +1 -1
- metadata +2 -2
data/.document
CHANGED
data/README.markdown
CHANGED
|
@@ -37,8 +37,8 @@ If you'd like to access that hash in your test cases, there are module methods a
|
|
|
37
37
|
# This example is in RSpec, because that is how I roll.
|
|
38
38
|
describe HypotheticalApp do
|
|
39
39
|
before(:each) do
|
|
40
|
-
#
|
|
41
|
-
#
|
|
40
|
+
# Initialize the session every time. Here we simulate pre-existing state,
|
|
41
|
+
# but you could just as easily assign nil or call .clear
|
|
42
42
|
Sinatra::Sessionography.session = {:foo => 'bar', :too => 'tar'}
|
|
43
43
|
end
|
|
44
44
|
|
|
@@ -70,9 +70,11 @@ I don't need any of those _today,_ so I'm not going to build them right away. B
|
|
|
70
70
|
|
|
71
71
|
License
|
|
72
72
|
-------
|
|
73
|
-
This project is licensed under the
|
|
73
|
+
This project is licensed under the **Don't Be a Dick License**, version 0.2, and is copyright 2010 by Stephen Eley. See the [LICENSE.markdown][5] file or the [DBAD License site][6] for elaboration on not being a dick.
|
|
74
74
|
|
|
75
75
|
[1]:http://groups.google.com/group/sinatrarb/msg/338ece48db7963cf
|
|
76
76
|
[2]:http://github.com/brynary/rack-test
|
|
77
77
|
[3]:http://rvm.beginrescueend.com
|
|
78
|
-
[4]:http://github.com/SFEley/sinatra-flash
|
|
78
|
+
[4]:http://github.com/SFEley/sinatra-flash
|
|
79
|
+
[5]: http://github.com/SFEley/sinatra-sessionography/blob/master/LICENSE.markdown
|
|
80
|
+
[6]: http://dbad-license.org
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0
|
|
1
|
+
0.1.0
|