consoleappsupport 0.6.1 → 0.6.2

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/History.txt CHANGED
@@ -25,3 +25,10 @@
25
25
  * Minor feature enhancements
26
26
 
27
27
  * Added ability to specify an app option as 'required'
28
+
29
+ === 0.6.2 / 2009-10-23
30
+
31
+ * Bug fix
32
+
33
+ * Fixed case-sensitivity problem
34
+
data/Manifest.txt CHANGED
@@ -8,7 +8,7 @@ examples/console_app_example.conf
8
8
  examples/console_app_example.rb
9
9
  examples/convert_logs_to_csv.rb
10
10
  examples/example_log4r.xml
11
- lib/ConsoleAppSupport.rb
12
- lib/ConsoleAppHelper.rb
13
- lib/ConsoleAppMixin.rb
11
+ lib/consoleappsupport.rb
12
+ lib/consoleapphelper.rb
13
+ lib/consoleappmixin.rb
14
14
  test/test_consoleappsupport.rb
data/Rakefile CHANGED
@@ -6,6 +6,6 @@ require 'hoe'
6
6
  Hoe.spec 'consoleappsupport' do
7
7
  self.rubyforge_name = 'consolesupport' # if different than 'consoleappsupport'
8
8
  self.developer('benton', 'benton@bentonroberts.com')
9
- self.extra_deps = [ 'log4r' ]
10
- self.extra_dev_deps = [ 'hoe' ]
9
+ self.extra_deps << [ 'log4r', '>= 0' ]
10
+ self.extra_dev_deps << [ 'hoe', '>= 0' ]
11
11
  end
File without changes
File without changes
@@ -6,7 +6,7 @@
6
6
  # See that module's documentation for usage.
7
7
 
8
8
  module ConsoleAppSupport
9
- VERSION = '0.6.1'
9
+ VERSION = '0.6.2'
10
10
  end
11
11
 
12
12
  require "#{File.dirname(__FILE__)}/consoleapphelper.rb"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: consoleappsupport
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.1
4
+ version: 0.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - benton
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-10-01 00:00:00 -04:00
12
+ date: 2009-10-23 00:00:00 -04:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -70,9 +70,9 @@ files:
70
70
  - examples/console_app_example.rb
71
71
  - examples/convert_logs_to_csv.rb
72
72
  - examples/example_log4r.xml
73
- - lib/ConsoleAppSupport.rb
74
- - lib/ConsoleAppHelper.rb
75
- - lib/ConsoleAppMixin.rb
73
+ - lib/consoleappsupport.rb
74
+ - lib/consoleapphelper.rb
75
+ - lib/consoleappmixin.rb
76
76
  - test/test_consoleappsupport.rb
77
77
  has_rdoc: true
78
78
  homepage: http://rubyforge.org/projects/consolesupport/