wunderbar 0.8.3 → 0.8.4

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/Manifest CHANGED
@@ -0,0 +1,17 @@
1
+ COPYING
2
+ README
3
+ Rakefile
4
+ lib/wunderbar.rb
5
+ lib/wunderbar/builder.rb
6
+ lib/wunderbar/cgi-methods.rb
7
+ lib/wunderbar/environment.rb
8
+ lib/wunderbar/html-methods.rb
9
+ lib/wunderbar/installation.rb
10
+ lib/wunderbar/job-control.rb
11
+ lib/wunderbar/logger.rb
12
+ lib/wunderbar/version.rb
13
+ test/test_builder.rb
14
+ test/test_html_markup.rb
15
+ test/test_logger.rb
16
+ wunderbar.gemspec
17
+ Manifest
@@ -3,7 +3,7 @@ require 'logger'
3
3
  module Wunderbar
4
4
  def self.logger
5
5
  return @logger if @logger
6
- @logger = Logger.new(STDOUT)
6
+ @logger = Logger.new(STDERR)
7
7
  @logger.level = Logger::WARN
8
8
  @logger.formatter = proc { |severity, datetime, progname, msg|
9
9
  "_#{severity} #{msg}\n"
@@ -2,7 +2,7 @@ module Wunderbar
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 8
5
- TINY = 3
5
+ TINY = 4
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
data/wunderbar.gemspec CHANGED
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "wunderbar"
5
- s.version = "0.8.3"
5
+ s.version = "0.8.4"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Sam Ruby"]
9
- s.date = "2012-02-05"
9
+ s.date = "2012-02-12"
10
10
  s.description = " Provides a number of globals, helper methods, and monkey patches which\n simplify the generation of HTML and the development of CGI scripts.\n"
11
11
  s.email = "rubys@intertwingly.net"
12
12
  s.extra_rdoc_files = ["COPYING", "README", "lib/wunderbar.rb", "lib/wunderbar/builder.rb", "lib/wunderbar/cgi-methods.rb", "lib/wunderbar/environment.rb", "lib/wunderbar/html-methods.rb", "lib/wunderbar/installation.rb", "lib/wunderbar/job-control.rb", "lib/wunderbar/logger.rb", "lib/wunderbar/version.rb"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wunderbar
3
3
  version: !ruby/object:Gem::Version
4
- hash: 57
4
+ hash: 55
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 8
9
- - 3
10
- version: 0.8.3
9
+ - 4
10
+ version: 0.8.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Sam Ruby
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2012-02-05 00:00:00 Z
18
+ date: 2012-02-12 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: builder