configtoolkit 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ === 1.0.2 / 2008-05-12
2
+ Improve code comments. Actually, this is a lie :). I'm just releasing
3
+ again in order to test my build system's support for Ruby gem releases.
4
+
1
5
  === 1.0.1 / 2008-05-12
2
6
  Improve code comments.
3
7
 
data/Rakefile CHANGED
@@ -4,12 +4,10 @@ $LOAD_PATH.unshift("lib")
4
4
 
5
5
  require 'rubygems'
6
6
  require 'hoe'
7
- require 'configtoolkit.rb'
8
7
 
9
8
  $stderr = STDERR
10
9
 
11
- Hoe.new('configtoolkit', ConfigToolkit::VERSION) do |p|
12
- ENV[VERSION] = ConfigToolkit::VERSION
10
+ Hoe.new('configtoolkit', "1.0.2") do |p|
13
11
  p.developer('DesigningPatterns', 'technical.inquiries@designingpatterns.com')
14
12
  end
15
13
 
@@ -8,8 +8,6 @@ module ConfigToolkit
8
8
  #
9
9
  class Error < RuntimeError; end
10
10
 
11
- VERSION = '1.0.1'
12
-
13
11
  end
14
12
 
15
13
  require 'configtoolkit/types'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: configtoolkit
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - DesigningPatterns