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 CHANGED
@@ -1,5 +1,5 @@
1
- README.rdoc
1
+ README.markdown
2
2
  lib/**/*.rb
3
3
  bin/*
4
4
  features/**/*.feature
5
- LICENSE
5
+ LICENSE.markdown
@@ -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
- # You should initialize the session every time, with a .clear or
41
- # an assignment. Here, we simulate pre-existing state.
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 [Don't Be a Dick License][5], version 0.2, and is copyright 2010 by Stephen Eley. See the [LICENSE.markdown][5] file for elaboration on not being a dick.
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.2
1
+ 0.1.0
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{sinatra-sessionography}
8
- s.version = "0.0.2"
8
+ s.version = "0.1.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Stephen Eley"]
metadata CHANGED
@@ -4,9 +4,9 @@ version: !ruby/object:Gem::Version
4
4
  prerelease: false
5
5
  segments:
6
6
  - 0
7
+ - 1
7
8
  - 0
8
- - 2
9
- version: 0.0.2
9
+ version: 0.1.0
10
10
  platform: ruby
11
11
  authors:
12
12
  - Stephen Eley