iqeo-conf 0.0.10 → 0.0.11
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/.gitignore +2 -2
- data/.yardoc/checksums +2 -0
- data/.yardoc/object_types +0 -0
- data/.yardoc/objects/root.dat +0 -0
- data/.yardoc/proxy_types +2 -0
- data/Gemfile.lock +8 -2
- data/README.md +88 -60
- data/Rakefile +15 -7
- data/doc/Iqeo/Configuration.html +974 -0
- data/doc/Iqeo.html +128 -0
- data/doc/_index.html +125 -0
- data/doc/class_list.html +53 -0
- data/doc/css/common.css +1 -0
- data/doc/css/full_list.css +57 -0
- data/doc/css/style.css +328 -0
- data/doc/file.README.html +206 -0
- data/doc/file_list.html +55 -0
- data/doc/frames.html +28 -0
- data/doc/index.html +206 -0
- data/doc/js/app.js +208 -0
- data/doc/js/full_list.js +173 -0
- data/doc/js/jquery.js +4 -0
- data/doc/method_list.html +140 -0
- data/doc/top-level-namespace.html +112 -0
- data/iqeo-conf.gemspec +6 -3
- data/lib/iqeo/configuration/version.rb +2 -1
- data/lib/iqeo/configuration.rb +28 -8
- data/spec/configuration_spec.rb +9 -9
- metadata +62 -20
- data/.rspec +0 -2
- data/.rvmrc +0 -1
- data/pkg/iqeo-conf-0.0.1.gem +0 -0
- data/pkg/iqeo-conf-0.0.2.gem +0 -0
- data/pkg/iqeo-conf-0.0.3.gem +0 -0
- data/pkg/iqeo-conf-0.0.4.gem +0 -0
- data/pkg/iqeo-conf-0.0.5.gem +0 -0
- data/pkg/iqeo-conf-0.0.6.gem +0 -0
- data/pkg/iqeo-conf-0.0.7.gem +0 -0
- data/pkg/iqeo-conf-0.0.8.gem +0 -0
- data/pkg/iqeo-conf-0.0.9.gem +0 -0
data/spec/configuration_spec.rb
CHANGED
@@ -61,7 +61,7 @@ describe Configuration do
|
|
61
61
|
delta :four"
|
62
62
|
conf = nil
|
63
63
|
expect do
|
64
|
-
conf = Configuration.
|
64
|
+
conf = Configuration.load io
|
65
65
|
end.to_not raise_error
|
66
66
|
conf.should_not be_nil
|
67
67
|
conf.alpha.should == 1 and conf.alpha.should be_a Fixnum
|
@@ -79,7 +79,7 @@ describe Configuration do
|
|
79
79
|
delta :four"
|
80
80
|
conf = nil
|
81
81
|
expect do
|
82
|
-
conf = Configuration.
|
82
|
+
conf = Configuration.load file
|
83
83
|
end.to_not raise_error
|
84
84
|
conf.should_not be_nil
|
85
85
|
conf.alpha.should == 1 and conf.alpha.should be_a Fixnum
|
@@ -95,7 +95,7 @@ describe Configuration do
|
|
95
95
|
delta :four"
|
96
96
|
conf = nil
|
97
97
|
expect do
|
98
|
-
conf = Configuration.
|
98
|
+
conf = Configuration.load "filename"
|
99
99
|
end.to_not raise_error
|
100
100
|
conf.should_not be_nil
|
101
101
|
conf.alpha.should == 1 and conf.alpha.should be_a Fixnum
|
@@ -541,7 +541,7 @@ describe Configuration do
|
|
541
541
|
expect do
|
542
542
|
conf = Configuration.new do |c|
|
543
543
|
c.alpha true
|
544
|
-
c.
|
544
|
+
c._load io
|
545
545
|
end
|
546
546
|
end.to_not raise_error
|
547
547
|
conf.should_not be_nil
|
@@ -583,9 +583,9 @@ describe Configuration do
|
|
583
583
|
conf = Configuration.new do |c|
|
584
584
|
c.alpha true
|
585
585
|
c.bravo do |x|
|
586
|
-
x.
|
586
|
+
x._load io1
|
587
587
|
end
|
588
|
-
c.echo { |x| x.
|
588
|
+
c.echo { |x| x._load io2 }
|
589
589
|
end
|
590
590
|
end.to_not raise_error
|
591
591
|
conf.should_not be_nil
|
@@ -814,7 +814,7 @@ describe Configuration do
|
|
814
814
|
expect do
|
815
815
|
conf = Configuration.new do
|
816
816
|
alpha true
|
817
|
-
|
817
|
+
_load io
|
818
818
|
end
|
819
819
|
end.to_not raise_error
|
820
820
|
conf.should_not be_nil
|
@@ -856,9 +856,9 @@ describe Configuration do
|
|
856
856
|
conf = Configuration.new do
|
857
857
|
alpha true
|
858
858
|
bravo do
|
859
|
-
|
859
|
+
_load io1
|
860
860
|
end
|
861
|
-
echo {
|
861
|
+
echo { _load io2 }
|
862
862
|
end
|
863
863
|
end.to_not raise_error
|
864
864
|
conf.should_not be_nil
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: iqeo-conf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.11
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,8 +9,24 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-05-
|
12
|
+
date: 2012-05-11 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: rake
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: 0.9.2
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 0.9.2
|
14
30
|
- !ruby/object:Gem::Dependency
|
15
31
|
name: rspec
|
16
32
|
requirement: !ruby/object:Gem::Requirement
|
@@ -28,13 +44,13 @@ dependencies:
|
|
28
44
|
- !ruby/object:Gem::Version
|
29
45
|
version: 2.9.0
|
30
46
|
- !ruby/object:Gem::Dependency
|
31
|
-
name:
|
47
|
+
name: yard
|
32
48
|
requirement: !ruby/object:Gem::Requirement
|
33
49
|
none: false
|
34
50
|
requirements:
|
35
51
|
- - ~>
|
36
52
|
- !ruby/object:Gem::Version
|
37
|
-
version: 0.
|
53
|
+
version: 0.8.1
|
38
54
|
type: :development
|
39
55
|
prerelease: false
|
40
56
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -42,23 +58,39 @@ dependencies:
|
|
42
58
|
requirements:
|
43
59
|
- - ~>
|
44
60
|
- !ruby/object:Gem::Version
|
45
|
-
version: 0.
|
61
|
+
version: 0.8.1
|
62
|
+
- !ruby/object:Gem::Dependency
|
63
|
+
name: rdoc
|
64
|
+
requirement: !ruby/object:Gem::Requirement
|
65
|
+
none: false
|
66
|
+
requirements:
|
67
|
+
- - ~>
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: 3.12.0
|
70
|
+
type: :development
|
71
|
+
prerelease: false
|
72
|
+
version_requirements: !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ~>
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: 3.12.0
|
46
78
|
- !ruby/object:Gem::Dependency
|
47
|
-
name:
|
79
|
+
name: redcarpet
|
48
80
|
requirement: !ruby/object:Gem::Requirement
|
49
81
|
none: false
|
50
82
|
requirements:
|
51
83
|
- - ~>
|
52
84
|
- !ruby/object:Gem::Version
|
53
|
-
version: 2.1.
|
54
|
-
type: :
|
85
|
+
version: 2.1.1
|
86
|
+
type: :development
|
55
87
|
prerelease: false
|
56
88
|
version_requirements: !ruby/object:Gem::Requirement
|
57
89
|
none: false
|
58
90
|
requirements:
|
59
91
|
- - ~>
|
60
92
|
- !ruby/object:Gem::Version
|
61
|
-
version: 2.1.
|
93
|
+
version: 2.1.1
|
62
94
|
description: A configuration DSL
|
63
95
|
email:
|
64
96
|
- gerard.fowley@iqeo.net
|
@@ -67,26 +99,35 @@ extensions: []
|
|
67
99
|
extra_rdoc_files: []
|
68
100
|
files:
|
69
101
|
- .gitignore
|
70
|
-
- .
|
71
|
-
- .
|
102
|
+
- .yardoc/checksums
|
103
|
+
- .yardoc/object_types
|
104
|
+
- .yardoc/objects/root.dat
|
105
|
+
- .yardoc/proxy_types
|
72
106
|
- Gemfile
|
73
107
|
- Gemfile.lock
|
74
108
|
- LICENSE
|
75
109
|
- README.md
|
76
110
|
- Rakefile
|
111
|
+
- doc/Iqeo.html
|
112
|
+
- doc/Iqeo/Configuration.html
|
113
|
+
- doc/_index.html
|
114
|
+
- doc/class_list.html
|
115
|
+
- doc/css/common.css
|
116
|
+
- doc/css/full_list.css
|
117
|
+
- doc/css/style.css
|
118
|
+
- doc/file.README.html
|
119
|
+
- doc/file_list.html
|
120
|
+
- doc/frames.html
|
121
|
+
- doc/index.html
|
122
|
+
- doc/js/app.js
|
123
|
+
- doc/js/full_list.js
|
124
|
+
- doc/js/jquery.js
|
125
|
+
- doc/method_list.html
|
126
|
+
- doc/top-level-namespace.html
|
77
127
|
- iqeo-conf.gemspec
|
78
128
|
- lib/iqeo/configuration.rb
|
79
129
|
- lib/iqeo/configuration/hash_with_indifferent_access.rb
|
80
130
|
- lib/iqeo/configuration/version.rb
|
81
|
-
- pkg/iqeo-conf-0.0.1.gem
|
82
|
-
- pkg/iqeo-conf-0.0.2.gem
|
83
|
-
- pkg/iqeo-conf-0.0.3.gem
|
84
|
-
- pkg/iqeo-conf-0.0.4.gem
|
85
|
-
- pkg/iqeo-conf-0.0.5.gem
|
86
|
-
- pkg/iqeo-conf-0.0.6.gem
|
87
|
-
- pkg/iqeo-conf-0.0.7.gem
|
88
|
-
- pkg/iqeo-conf-0.0.8.gem
|
89
|
-
- pkg/iqeo-conf-0.0.9.gem
|
90
131
|
- spec/configuration_spec.rb
|
91
132
|
- spec/spec_helper.rb
|
92
133
|
homepage: http://iqeo.github.com/iqeo-conf
|
@@ -114,3 +155,4 @@ signing_key:
|
|
114
155
|
specification_version: 3
|
115
156
|
summary: A DSL for writing configuration files
|
116
157
|
test_files: []
|
158
|
+
has_rdoc:
|
data/.rspec
DELETED
data/.rvmrc
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
rvm use ruby-1.9.3-p125@iqeo-conf
|
data/pkg/iqeo-conf-0.0.1.gem
DELETED
Binary file
|
data/pkg/iqeo-conf-0.0.2.gem
DELETED
Binary file
|
data/pkg/iqeo-conf-0.0.3.gem
DELETED
Binary file
|
data/pkg/iqeo-conf-0.0.4.gem
DELETED
Binary file
|
data/pkg/iqeo-conf-0.0.5.gem
DELETED
Binary file
|
data/pkg/iqeo-conf-0.0.6.gem
DELETED
Binary file
|
data/pkg/iqeo-conf-0.0.7.gem
DELETED
Binary file
|
data/pkg/iqeo-conf-0.0.8.gem
DELETED
Binary file
|
data/pkg/iqeo-conf-0.0.9.gem
DELETED
Binary file
|