webs 0.1.32 → 0.1.33

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/Rakefile CHANGED
@@ -3,7 +3,7 @@ require 'rubygems'
3
3
  require 'rake'
4
4
  require 'echoe'
5
5
 
6
- Echoe.new('webs', '0.1.32') do |p|
6
+ Echoe.new('webs', '0.1.33') do |p|
7
7
  p.description = "Reusable webs stuff."
8
8
  p.url = "https://colczak@github.com/websdev/websgem.git"
9
9
  p.author = "Chuck Olczak"
data/lib/helper/tags.rb CHANGED
@@ -12,7 +12,8 @@ module Webs
12
12
  def fwml tagname, options={}, &block
13
13
  attributes = options.delete( :fw_attributes )
14
14
  # Rails.logger.debug "****** fwml #{tagname} #{options.inspect}"
15
- if ['sanitize', 'wizzywig', 'intl'].include?(tagname.to_s)
15
+ tagname = tagname.to_s unless tagname.nil?
16
+ if ['sanitize', 'wizzywig', 'intl'].include?(tagname)
16
17
  tag = self.send( "fw_#{tagname}", options, &block )
17
18
  else
18
19
  if block
data/lib/webs.rb CHANGED
@@ -7,7 +7,7 @@ require dir + 'helper/params'
7
7
  require dir + 'helper/tags'
8
8
 
9
9
  module Webs
10
- VERSION = '0.1.32'.freeze
10
+ VERSION = '0.1.33'.freeze
11
11
 
12
12
  def self.app_title
13
13
  APP_NAME.titleize
data/webs.gemspec CHANGED
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{webs}
5
- s.version = "0.1.32"
5
+ s.version = "0.1.33"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Chuck Olczak"]
9
- s.date = %q{2011-04-29}
9
+ s.date = %q{2011-05-04}
10
10
  s.description = %q{Reusable webs stuff.}
11
11
  s.email = %q{chuck@webs.com}
12
12
  gemfiles = [
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: webs
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.1.32
5
+ version: 0.1.33
6
6
  platform: ruby
7
7
  authors:
8
8
  - Chuck Olczak
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-04-29 00:00:00 -04:00
13
+ date: 2011-05-04 00:00:00 -04:00
14
14
  default_executable:
15
15
  dependencies: []
16
16