webs 0.1.31 → 0.1.32

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.31') do |p|
6
+ Echoe.new('webs', '0.1.32') 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
@@ -47,7 +47,7 @@ module Webs
47
47
  output.safe_concat("</fw:#{tagname}>")
48
48
  end
49
49
 
50
- def inline_tag tagname, attributes = nil, options
50
+ def inline_tag( tagname, attributes, options={} )
51
51
  if attributes
52
52
  "<fw:#{tagname}#{html_options(options)}></fw:#{tagname}>"
53
53
  else
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.31'.freeze
10
+ VERSION = '0.1.32'.freeze
11
11
 
12
12
  def self.app_title
13
13
  APP_NAME.titleize
data/webs.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{webs}
5
- s.version = "0.1.31"
5
+ s.version = "0.1.32"
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"]
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: webs
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.1.31
5
+ version: 0.1.32
6
6
  platform: ruby
7
7
  authors:
8
8
  - Chuck Olczak