rack-denyie 1.1.1 → 1.1.2

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -1,6 +1,11 @@
1
- == IE Filter on Rack
1
+ = Rack::DenyIE
2
+ ===
3
+
4
+ ==== 12.03.09
2
5
 
3
- v1.1 = Fixed CSS issues with IE 4/5, Rewrote Tests
6
+ - v1.1.2 ~ Fixed issue with ERB binding
7
+ - v1.1.1 ~ Removed an unnecessary class / Cleaned up some of the code
8
+ - v1.1 ~ Fixed CSS issues with IE 4/5 / Rewrote Tests
4
9
 
5
10
  === What?
6
11
  ===
@@ -64,6 +69,6 @@ Any key/value you pass in will be available to your ERB template.
64
69
  * Allow HAML templates
65
70
  * More Tests
66
71
 
67
- == Copyright
72
+ === Copyright
68
73
 
69
74
  Copyright (c) 2009 Brad Whitcomb, Digitalstar Studios. See LICENSE for details.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.1
1
+ 1.1.2
data/lib/rack-denyie.rb CHANGED
@@ -69,6 +69,9 @@ module Rack
69
69
 
70
70
  def initialize(options = {})
71
71
  @options = options
72
+ @options.each_pair do |key, value|
73
+ self.instance_variable_set("@#{key}", value)
74
+ end
72
75
  @erb = ERB.new(::File.read(@options[:template]), nil, "%<>")
73
76
  end
74
77
 
data/rack-denyie.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{rack-denyie}
8
- s.version = "1.1.1"
8
+ s.version = "1.1.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Brad Whitcomb"]
12
- s.date = %q{2009-12-03}
12
+ s.date = %q{2009-12-04}
13
13
  s.description = %q{Rack middleware that denies specified versions of IE.}
14
14
  s.email = %q{brad@digitalstarstudios.com}
15
15
  s.extra_rdoc_files = [
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rack-denyie
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
  - Brad Whitcomb
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-12-03 00:00:00 -08:00
12
+ date: 2009-12-04 00:00:00 -08:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency