rack-plastic 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/CHANGELOG +6 -0
  2. data/Rakefile +1 -1
  3. data/lib/rack-plastic.rb +1 -1
  4. metadata +1 -1
data/CHANGELOG CHANGED
@@ -1,2 +1,8 @@
1
+ 0.0.2 (December 3, 2009)
2
+ * BUGFIX: Namespace error.
3
+
4
+ 0.0.1 (December 3, 2009)
5
+ * BUGFIX: Wrong filename.
6
+
1
7
  0.0.0 (December 3, 2009)
2
8
  * Initial release.
data/Rakefile CHANGED
@@ -13,7 +13,7 @@ begin
13
13
  require 'jeweler'
14
14
  Jeweler::Tasks.new do |s|
15
15
  s.name = "rack-plastic"
16
- s.version = "0.0.1"
16
+ s.version = "0.0.2"
17
17
  s.author = "Wyatt Greene"
18
18
  s.email = "techiferous@gmail.com"
19
19
  s.summary = "Helps you write Rack middleware using Nokogiri."
data/lib/rack-plastic.rb CHANGED
@@ -34,7 +34,7 @@ module Rack
34
34
  def initialize(app, options = {}) #:nodoc:
35
35
  @app = app
36
36
  @options = options
37
- @p = PlasticHelper.new
37
+ @p = ::Rack::PlasticHelper.new
38
38
  end
39
39
 
40
40
  # Rack::Plastic provides a call method so that your middleware doesn't
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rack-plastic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wyatt Greene