configtoolkit 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +4 -0
- data/Manifest.txt +22 -0
- data/Rakefile +1 -1
- metadata +3 -1
data/History.txt
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
=== 1.0.3 / 2008-05-12
|
2
|
+
Include Manifest.txt in the release, so that unit tests can be run after
|
3
|
+
downloading the gem.
|
4
|
+
|
1
5
|
=== 1.0.2 / 2008-05-12
|
2
6
|
Improve code comments. Actually, this is a lie :). I'm just releasing
|
3
7
|
again in order to test my build system's support for Ruby gem releases.
|
data/Manifest.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Manifest.txt
|
2
|
+
LICENSE
|
3
|
+
README.txt
|
4
|
+
History.txt
|
5
|
+
Rakefile
|
6
|
+
lib/configtoolkit.rb
|
7
|
+
lib/configtoolkit/baseconfig.rb
|
8
|
+
lib/configtoolkit/toolkit.rb
|
9
|
+
lib/configtoolkit/types.rb
|
10
|
+
lib/configtoolkit/yamlreader.rb
|
11
|
+
lib/configtoolkit/yamlwriter.rb
|
12
|
+
test/common.rb
|
13
|
+
test/readerwritertest.rb
|
14
|
+
test/test_baseconfig.rb
|
15
|
+
test/test_yaml.rb
|
16
|
+
test/bad_config.yaml
|
17
|
+
test/contained_sample.yaml
|
18
|
+
test/firewall.yaml
|
19
|
+
test/machines.yaml
|
20
|
+
test/sample.ruby_yaml_types.yaml
|
21
|
+
test/sample.standard_yaml_types.yaml
|
22
|
+
test/webserver.yaml
|
data/Rakefile
CHANGED
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.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- DesigningPatterns
|
@@ -29,9 +29,11 @@ executables: []
|
|
29
29
|
extensions: []
|
30
30
|
|
31
31
|
extra_rdoc_files:
|
32
|
+
- Manifest.txt
|
32
33
|
- README.txt
|
33
34
|
- History.txt
|
34
35
|
files:
|
36
|
+
- Manifest.txt
|
35
37
|
- LICENSE
|
36
38
|
- README.txt
|
37
39
|
- History.txt
|