weppos-helperful 0.2.1 → 0.2.2

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/CHANGELOG.rdoc CHANGED
@@ -1,9 +1,14 @@
1
1
  = Changelog
2
2
 
3
3
 
4
+ == Release 0.2.2
5
+
6
+ * FIXED: The "Unhandled special" error message for real!
7
+
8
+
4
9
  == Release 0.2.1
5
10
 
6
- * FIXED: RubyGem fails to generate the documentation with the following error message "Unhandled special".
11
+ * FIXED: RubyGems fails to generate the documentation with the following error message "Unhandled special".
7
12
 
8
13
 
9
14
  == Release 0.2.0
data/helperful.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{helperful}
5
- s.version = "0.2.1"
5
+ s.version = "0.2.2"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Simone Carletti"]
data/lib/helperful.rb CHANGED
@@ -24,9 +24,9 @@ module Helperful
24
24
 
25
25
  NAME = 'Helperful'
26
26
  GEM = 'helperful'
27
- AUTHOR = 'Simone Carletti <weppos@weppos.net>'
27
+ AUTHORS = ['Simone Carletti <weppos@weppos.net>']
28
+
28
29
 
29
-
30
30
  module ControllerMixin
31
31
 
32
32
  def helperful(*args, &block)
@@ -28,13 +28,13 @@ module Helperful
28
28
  # Returns the tradedoubler site verification tag for +publisher_id+.
29
29
  #
30
30
  # tradedoubler_verification_tag('123456')
31
- # # => "<!-- TradeDoubler site verification 123456 -->"
31
+ # # => "<! -- TradeDoubler site verification 123456 -->"
32
32
  #
33
33
  # tradedoubler_verification_tag(123456)
34
- # # => "<!-- TradeDoubler site verification 123456 -->"
34
+ # # => "<! -- TradeDoubler site verification 123456 -->"
35
35
  #
36
36
  # tradedoubler_verification_tag(nil)
37
- # # => "<!-- TradeDoubler site verification -->"
37
+ # # => "<! -- TradeDoubler site verification -->"
38
38
  #
39
39
  def tradedoubler_verification_tag(publisher_id)
40
40
  "<!-- TradeDoubler site verification #{publisher_id.to_s} -->"
@@ -20,7 +20,7 @@ module Helperful
20
20
  module Version
21
21
  MAJOR = 0
22
22
  MINOR = 2
23
- TINY = 1
23
+ TINY = 2
24
24
 
25
25
  STRING = [MAJOR, MINOR, TINY].join('.')
26
26
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: weppos-helperful
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Simone Carletti