weppos-helperful 0.2.0 → 0.2.1
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 +7 -1
- data/Rakefile +1 -1
- data/helperful.gemspec +2 -2
- data/lib/helperful/affiliations_helper.rb +3 -3
- data/lib/helperful/version.rb +1 -1
- metadata +2 -2
data/CHANGELOG.rdoc
CHANGED
@@ -1,6 +1,12 @@
|
|
1
1
|
= Changelog
|
2
2
|
|
3
|
-
|
3
|
+
|
4
|
+
== Release 0.2.1
|
5
|
+
|
6
|
+
* FIXED: RubyGem fails to generate the documentation with the following error message "Unhandled special".
|
7
|
+
|
8
|
+
|
9
|
+
== Release 0.2.0
|
4
10
|
|
5
11
|
* ADDED: Added Helperful::ContentHelper module (subsequently renamed to Helperful::ContentHelper) with #sidebar helper for passing content_for :sidebar to the layout. Even if this is a really simple method, this method adds a bit of semantic meaning to common application usage of content_for for created sidebars.
|
6
12
|
|
data/Rakefile
CHANGED
@@ -31,7 +31,7 @@ Echoe.new(PKG_NAME, PKG_VERSION) do |p|
|
|
31
31
|
p.project = RUBYFORGE_PROJECT
|
32
32
|
|
33
33
|
p.need_zip = true
|
34
|
-
p.rcov_options = ["--main
|
34
|
+
p.rcov_options = ["--main README.rdoc -x Rakefile -x mocha -x rcov"]
|
35
35
|
p.rdoc_pattern = /^(lib|CHANGELOG.rdoc|README.rdoc|LICENSE.rdoc)/
|
36
36
|
|
37
37
|
p.development_dependencies += ["rake >=0.8",
|
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.
|
5
|
+
s.version = "0.2.1"
|
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"]
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
|
|
10
10
|
s.description = %q{Helperful aims to be a collection of useful and reusable Rails helpers.}
|
11
11
|
s.email = %q{weppos@weppos.net}
|
12
12
|
s.extra_rdoc_files = ["CHANGELOG.rdoc", "lib/helperful/affiliations_helper.rb", "lib/helperful/content_helper.rb", "lib/helperful/deprecations.rb", "lib/helperful/title_helper.rb", "lib/helperful/version.rb", "lib/helperful.rb", "LICENSE.rdoc", "README.rdoc"]
|
13
|
-
s.files = ["CHANGELOG.rdoc", "init.rb", "install.rb", "lib/helperful/affiliations_helper.rb", "lib/helperful/content_helper.rb", "lib/helperful/deprecations.rb", "lib/helperful/title_helper.rb", "lib/helperful/version.rb", "lib/helperful.rb", "LICENSE.rdoc", "rails/init.rb", "Rakefile", "README.rdoc", "tasks/helperful_tasks.rake", "test/affiliations_helper_test.rb", "test/content_helper_test.rb", "test/fixtures/content/has_content.html.erb", "test/fixtures/content/sidebar.html.erb", "test/fixtures/content/sidebar_concatenate.html.erb", "test/fixtures/layouts/has_content.html.erb", "test/fixtures/layouts/sidebar.html.erb", "test/helperful_test.rb", "test/test_helper.rb", "test/title_helper_test.rb", "uninstall.rb", "Manifest"
|
13
|
+
s.files = ["CHANGELOG.rdoc", "helperful.gemspec", "init.rb", "install.rb", "lib/helperful/affiliations_helper.rb", "lib/helperful/content_helper.rb", "lib/helperful/deprecations.rb", "lib/helperful/title_helper.rb", "lib/helperful/version.rb", "lib/helperful.rb", "LICENSE.rdoc", "rails/init.rb", "Rakefile", "README.rdoc", "tasks/helperful_tasks.rake", "test/affiliations_helper_test.rb", "test/content_helper_test.rb", "test/fixtures/content/has_content.html.erb", "test/fixtures/content/sidebar.html.erb", "test/fixtures/content/sidebar_concatenate.html.erb", "test/fixtures/layouts/has_content.html.erb", "test/fixtures/layouts/sidebar.html.erb", "test/helperful_test.rb", "test/test_helper.rb", "test/title_helper_test.rb", "uninstall.rb", "Manifest"]
|
14
14
|
s.has_rdoc = true
|
15
15
|
s.homepage = %q{http://code.simonecarletti.com/helperful}
|
16
16
|
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Helperful", "--main", "README.rdoc"]
|
@@ -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} -->"
|
data/lib/helperful/version.rb
CHANGED
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.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Simone Carletti
|
@@ -60,6 +60,7 @@ extra_rdoc_files:
|
|
60
60
|
- README.rdoc
|
61
61
|
files:
|
62
62
|
- CHANGELOG.rdoc
|
63
|
+
- helperful.gemspec
|
63
64
|
- init.rb
|
64
65
|
- install.rb
|
65
66
|
- lib/helperful/affiliations_helper.rb
|
@@ -85,7 +86,6 @@ files:
|
|
85
86
|
- test/title_helper_test.rb
|
86
87
|
- uninstall.rb
|
87
88
|
- Manifest
|
88
|
-
- helperful.gemspec
|
89
89
|
has_rdoc: true
|
90
90
|
homepage: http://code.simonecarletti.com/helperful
|
91
91
|
post_install_message:
|