uuml 0.0.2 → 0.0.3

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.
Files changed (4) hide show
  1. data/lib/uuml.rb +1 -1
  2. data/lib/uuml/html.rb +2 -2
  3. data/uuml.gemspec +1 -1
  4. metadata +2 -2
@@ -4,7 +4,7 @@ require 'nokogiri'
4
4
  require 'rack'
5
5
 
6
6
  module Uuml
7
- VERSION = "0.0.2"
7
+ VERSION = "0.0.3"
8
8
  end
9
9
 
10
10
  require 'uuml/html'
@@ -9,8 +9,8 @@ module Uuml::HTML
9
9
  replacer = lambda do |node|
10
10
  node.content = node.content.
11
11
  gsub(/(?<![Qq])ue/, 'ü').
12
- gsub(/(?<![QqOo])u(?![i])/, 'ü').
13
- gsub(/(?<![QqOo])U(?![Ii])/, 'Ü')
12
+ gsub(/(?<![QqOoAa])u(?![i])/, 'ü').
13
+ gsub(/(?<![QqOoAa])U(?![Ii])/, 'Ü')
14
14
  end
15
15
  condition = TEXT_TAGS.map { |t| "parent::#{t}"}.join(' or ')
16
16
 
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "uuml"
6
- s.version = "0.0.2"
6
+ s.version = "0.0.3"
7
7
  s.platform = Gem::Platform::RUBY
8
8
  s.authors = ["Willem van Bergen"]
9
9
  s.email = ["willem@railsdoctors.com"]
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 2
9
- version: 0.0.2
8
+ - 3
9
+ version: 0.0.3
10
10
  platform: ruby
11
11
  authors:
12
12
  - Willem van Bergen