boxgrinder-core 0.3.11 → 0.3.12

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/CHANGELOG CHANGED
@@ -1,3 +1,6 @@
1
+ v0.3.12
2
+ * Support for printing coloured terminal output
3
+
1
4
  v0.3.11
2
5
 
3
6
  * [BGBUILD-346] Confirm Ruby 1.9.3 support
data/Manifest CHANGED
@@ -0,0 +1,48 @@
1
+ CHANGELOG
2
+ LICENSE
3
+ Manifest
4
+ README
5
+ Rakefile
6
+ boxgrinder-core.gemspec
7
+ lib/boxgrinder-core.rb
8
+ lib/boxgrinder-core/appliance-parser.rb
9
+ lib/boxgrinder-core/appliance-validator.rb
10
+ lib/boxgrinder-core/compat/color.rb
11
+ lib/boxgrinder-core/compat/yaml19.rb
12
+ lib/boxgrinder-core/errors.rb
13
+ lib/boxgrinder-core/helpers/appliance-config-helper.rb
14
+ lib/boxgrinder-core/helpers/appliance-definition-helper.rb
15
+ lib/boxgrinder-core/helpers/appliance-transformation-helper.rb
16
+ lib/boxgrinder-core/helpers/exec-helper.rb
17
+ lib/boxgrinder-core/helpers/log-helper.rb
18
+ lib/boxgrinder-core/models/appliance-config.rb
19
+ lib/boxgrinder-core/models/config.rb
20
+ lib/boxgrinder-core/models/task.rb
21
+ lib/boxgrinder-core/schemas/appliance_schema_0.8.0.yaml
22
+ lib/boxgrinder-core/schemas/appliance_schema_0.9.0.yaml
23
+ lib/boxgrinder-core/schemas/appliance_schema_0.9.6.yaml
24
+ rubygem-boxgrinder-core.spec
25
+ spec/appliance-parser-spec.rb
26
+ spec/appliance-validator-spec.rb
27
+ spec/helpers/appliance-config-helper-spec.rb
28
+ spec/helpers/appliance-definition-helper-spec.rb
29
+ spec/helpers/appliance-transformation-helper-spec.rb
30
+ spec/helpers/exec-helper-spec.rb
31
+ spec/helpers/log-helper-spec.rb
32
+ spec/models/appliance-config-spec.rb
33
+ spec/models/config-spec.rb
34
+ spec/rcov_helper.rb
35
+ spec/rspec/ls/one
36
+ spec/rspec/ls/two
37
+ spec/rspec/src/appliances/0.8.x.appl
38
+ spec/rspec/src/appliances/0.9.x-invalid.appl
39
+ spec/rspec/src/appliances/0.9.x.appl
40
+ spec/rspec/src/appliances/comments.appl
41
+ spec/rspec/src/appliances/ephemeral-repo.appl
42
+ spec/rspec/src/appliances/full.appl
43
+ spec/rspec/src/appliances/invalid-yaml.appl
44
+ spec/rspec/src/appliances/legacy.appl
45
+ spec/rspec/src/appliances/repo.appl
46
+ spec/rspec/src/config/empty
47
+ spec/rspec/src/config/valid
48
+ spec/spec_helper.rb
data/Rakefile CHANGED
@@ -26,20 +26,20 @@ Echoe.new("boxgrinder-core") do |p|
26
26
  p.summary = "Core library for BoxGrinder"
27
27
  p.url = "http://boxgrinder.org"
28
28
  p.email = "info@boxgrinder.org"
29
- p.runtime_dependencies = ['hashery >=1.3.0', 'kwalify >=0.7.2']
29
+ p.runtime_dependencies = ['hashery >=1.3.0', 'kwalify >=0.7.2', 'term-ansicolor >=1.0.0']
30
30
  p.runtime_dependencies << 'open4 >=1.0.0' unless RUBY_PLATFORM =~ /java/
31
31
  end
32
32
 
33
33
  RSpec::Core::RakeTask.new('spec') do |t|
34
- t.pattern = ["spec/**/*-spec.rb"]
35
34
  t.rspec_opts = ['-r rubygems', '-r boxgrinder-core', '--colour', '--format', 'doc', '-b']
35
+ t.pattern = ["spec/**/*-spec.rb"]
36
36
  t.verbose = true
37
37
  end
38
38
 
39
39
  RSpec::Core::RakeTask.new('spec:coverage') do |t|
40
- t.pattern = "spec/**/*-spec.rb"
41
40
  t.rspec_opts = ['-r rubygems', '-r spec_helper', '-r boxgrinder-core', '--colour',
42
41
  '--format', 'html', '--out', 'pkg/rspec_report.html', '-b']
42
+ t.pattern = "spec/**/*-spec.rb"
43
43
  t.verbose = true
44
44
 
45
45
  if RUBY_VERSION =~ /^1.8/
@@ -2,20 +2,20 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "boxgrinder-core"
5
- s.version = "0.3.11"
5
+ s.version = "0.3.12"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Marek Goldmann"]
9
- s.date = "2012-03-19"
9
+ s.date = "2012-06-14"
10
10
  s.description = "Core library for BoxGrinder"
11
11
  s.email = "info@boxgrinder.org"
12
- s.extra_rdoc_files = ["CHANGELOG", "LICENSE", "README", "lib/boxgrinder-core.rb", "lib/boxgrinder-core/appliance-parser.rb", "lib/boxgrinder-core/appliance-validator.rb", "lib/boxgrinder-core/compat/yaml19.rb", "lib/boxgrinder-core/errors.rb", "lib/boxgrinder-core/helpers/appliance-config-helper.rb", "lib/boxgrinder-core/helpers/appliance-definition-helper.rb", "lib/boxgrinder-core/helpers/appliance-transformation-helper.rb", "lib/boxgrinder-core/helpers/exec-helper.rb", "lib/boxgrinder-core/helpers/log-helper.rb", "lib/boxgrinder-core/models/appliance-config.rb", "lib/boxgrinder-core/models/config.rb", "lib/boxgrinder-core/models/task.rb", "lib/boxgrinder-core/schemas/appliance_schema_0.8.0.yaml", "lib/boxgrinder-core/schemas/appliance_schema_0.9.0.yaml", "lib/boxgrinder-core/schemas/appliance_schema_0.9.6.yaml"]
13
- s.files = ["CHANGELOG", "LICENSE", "Manifest", "README", "Rakefile", "boxgrinder-core.gemspec", "lib/boxgrinder-core.rb", "lib/boxgrinder-core/appliance-parser.rb", "lib/boxgrinder-core/appliance-validator.rb", "lib/boxgrinder-core/compat/yaml19.rb", "lib/boxgrinder-core/errors.rb", "lib/boxgrinder-core/helpers/appliance-config-helper.rb", "lib/boxgrinder-core/helpers/appliance-definition-helper.rb", "lib/boxgrinder-core/helpers/appliance-transformation-helper.rb", "lib/boxgrinder-core/helpers/exec-helper.rb", "lib/boxgrinder-core/helpers/log-helper.rb", "lib/boxgrinder-core/models/appliance-config.rb", "lib/boxgrinder-core/models/config.rb", "lib/boxgrinder-core/models/task.rb", "lib/boxgrinder-core/schemas/appliance_schema_0.8.0.yaml", "lib/boxgrinder-core/schemas/appliance_schema_0.9.0.yaml", "lib/boxgrinder-core/schemas/appliance_schema_0.9.6.yaml", "rubygem-boxgrinder-core.spec", "spec/appliance-parser-spec.rb", "spec/appliance-validator-spec.rb", "spec/helpers/appliance-config-helper-spec.rb", "spec/helpers/appliance-definition-helper-spec.rb", "spec/helpers/appliance-transformation-helper-spec.rb", "spec/helpers/exec-helper-spec.rb", "spec/helpers/log-helper-spec.rb", "spec/models/appliance-config-spec.rb", "spec/models/config-spec.rb", "spec/rcov_helper.rb", "spec/rspec/ls/one", "spec/rspec/ls/two", "spec/rspec/src/appliances/0.8.x.appl", "spec/rspec/src/appliances/0.9.x-invalid.appl", "spec/rspec/src/appliances/0.9.x.appl", "spec/rspec/src/appliances/comments.appl", "spec/rspec/src/appliances/ephemeral-repo.appl", "spec/rspec/src/appliances/full.appl", "spec/rspec/src/appliances/invalid-yaml.appl", "spec/rspec/src/appliances/legacy.appl", "spec/rspec/src/appliances/repo.appl", "spec/rspec/src/config/empty", "spec/rspec/src/config/valid", "spec/spec_helper.rb"]
12
+ s.extra_rdoc_files = ["CHANGELOG", "LICENSE", "README", "lib/boxgrinder-core.rb", "lib/boxgrinder-core/appliance-parser.rb", "lib/boxgrinder-core/appliance-validator.rb", "lib/boxgrinder-core/compat/color.rb", "lib/boxgrinder-core/compat/yaml19.rb", "lib/boxgrinder-core/errors.rb", "lib/boxgrinder-core/helpers/appliance-config-helper.rb", "lib/boxgrinder-core/helpers/appliance-definition-helper.rb", "lib/boxgrinder-core/helpers/appliance-transformation-helper.rb", "lib/boxgrinder-core/helpers/exec-helper.rb", "lib/boxgrinder-core/helpers/log-helper.rb", "lib/boxgrinder-core/models/appliance-config.rb", "lib/boxgrinder-core/models/config.rb", "lib/boxgrinder-core/models/task.rb", "lib/boxgrinder-core/schemas/appliance_schema_0.8.0.yaml", "lib/boxgrinder-core/schemas/appliance_schema_0.9.0.yaml", "lib/boxgrinder-core/schemas/appliance_schema_0.9.6.yaml"]
13
+ s.files = ["CHANGELOG", "LICENSE", "Manifest", "README", "Rakefile", "boxgrinder-core.gemspec", "lib/boxgrinder-core.rb", "lib/boxgrinder-core/appliance-parser.rb", "lib/boxgrinder-core/appliance-validator.rb", "lib/boxgrinder-core/compat/color.rb", "lib/boxgrinder-core/compat/yaml19.rb", "lib/boxgrinder-core/errors.rb", "lib/boxgrinder-core/helpers/appliance-config-helper.rb", "lib/boxgrinder-core/helpers/appliance-definition-helper.rb", "lib/boxgrinder-core/helpers/appliance-transformation-helper.rb", "lib/boxgrinder-core/helpers/exec-helper.rb", "lib/boxgrinder-core/helpers/log-helper.rb", "lib/boxgrinder-core/models/appliance-config.rb", "lib/boxgrinder-core/models/config.rb", "lib/boxgrinder-core/models/task.rb", "lib/boxgrinder-core/schemas/appliance_schema_0.8.0.yaml", "lib/boxgrinder-core/schemas/appliance_schema_0.9.0.yaml", "lib/boxgrinder-core/schemas/appliance_schema_0.9.6.yaml", "rubygem-boxgrinder-core.spec", "spec/appliance-parser-spec.rb", "spec/appliance-validator-spec.rb", "spec/helpers/appliance-config-helper-spec.rb", "spec/helpers/appliance-definition-helper-spec.rb", "spec/helpers/appliance-transformation-helper-spec.rb", "spec/helpers/exec-helper-spec.rb", "spec/helpers/log-helper-spec.rb", "spec/models/appliance-config-spec.rb", "spec/models/config-spec.rb", "spec/rcov_helper.rb", "spec/rspec/ls/one", "spec/rspec/ls/two", "spec/rspec/src/appliances/0.8.x.appl", "spec/rspec/src/appliances/0.9.x-invalid.appl", "spec/rspec/src/appliances/0.9.x.appl", "spec/rspec/src/appliances/comments.appl", "spec/rspec/src/appliances/ephemeral-repo.appl", "spec/rspec/src/appliances/full.appl", "spec/rspec/src/appliances/invalid-yaml.appl", "spec/rspec/src/appliances/legacy.appl", "spec/rspec/src/appliances/repo.appl", "spec/rspec/src/config/empty", "spec/rspec/src/config/valid", "spec/spec_helper.rb"]
14
14
  s.homepage = "http://boxgrinder.org"
15
15
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Boxgrinder-core", "--main", "README"]
16
16
  s.require_paths = ["lib"]
17
17
  s.rubyforge_project = "BoxGrinder"
18
- s.rubygems_version = "1.8.11"
18
+ s.rubygems_version = "1.8.24"
19
19
  s.summary = "Core library for BoxGrinder"
20
20
 
21
21
  if s.respond_to? :specification_version then
@@ -24,15 +24,18 @@ Gem::Specification.new do |s|
24
24
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
25
25
  s.add_runtime_dependency(%q<hashery>, [">= 1.3.0"])
26
26
  s.add_runtime_dependency(%q<kwalify>, [">= 0.7.2"])
27
+ s.add_runtime_dependency(%q<term-ansicolor>, [">= 1.0.0"])
27
28
  s.add_runtime_dependency(%q<open4>, [">= 1.0.0"])
28
29
  else
29
30
  s.add_dependency(%q<hashery>, [">= 1.3.0"])
30
31
  s.add_dependency(%q<kwalify>, [">= 0.7.2"])
32
+ s.add_dependency(%q<term-ansicolor>, [">= 1.0.0"])
31
33
  s.add_dependency(%q<open4>, [">= 1.0.0"])
32
34
  end
33
35
  else
34
36
  s.add_dependency(%q<hashery>, [">= 1.3.0"])
35
37
  s.add_dependency(%q<kwalify>, [">= 0.7.2"])
38
+ s.add_dependency(%q<term-ansicolor>, [">= 1.0.0"])
36
39
  s.add_dependency(%q<open4>, [">= 1.0.0"])
37
40
  end
38
41
  end
@@ -18,4 +18,5 @@
18
18
 
19
19
  module BoxGrinder
20
20
  require 'boxgrinder-core/compat/yaml19'
21
+ require 'boxgrinder-core/compat/color'
21
22
  end
@@ -0,0 +1,3 @@
1
+ require 'term/ansicolor'
2
+
3
+ String include Term::ANSIColor
@@ -1,6 +1,6 @@
1
1
  module BoxGrinder
2
2
  # Avoid Psych::SyntaxError (<unknown>): couldn't parse YAML ... in 1.9
3
- if RUBY_VERSION.split('.')[1] == '9'
3
+ if RUBY_VERSION >= '1.9'
4
4
  require 'yaml'
5
5
  YAML::ENGINE.yamler = 'syck'
6
6
  end
@@ -1,32 +1,45 @@
1
- %global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null)
2
- %global gemname boxgrinder-core
3
- %global geminstdir %{gemdir}/gems/%{gemname}-%{version}
1
+ %global gem_name boxgrinder-core
2
+
3
+ %{!?gem_dir: %global gem_dir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null)}
4
+ %{!?gem_instdir: %global gem_instdir %{gem_dir}/gems/%{gem_name}-%{version}}
5
+
6
+ %if 0%{?fedora} >= 17
7
+ %global rubyabi 1.9.1
8
+ %else
4
9
  %global rubyabi 1.8
10
+ %endif
5
11
 
6
- Summary: Core library for BoxGrinder
7
- Name: rubygem-%{gemname}
8
- Version: 0.3.11
9
- Release: 1%{?dist}
10
- Group: Development/Languages
11
- License: LGPLv3+
12
- URL: http://boxgrinder.org/
13
- Source0: http://rubygems.org/gems/%{gemname}-%{version}.gem
12
+ Summary: Core library for BoxGrinder
13
+ Name: rubygem-%{gem_name}
14
+ Version: 0.3.12
15
+ Release: 1%{?dist}
16
+ Group: Development/Languages
17
+ License: LGPLv3+
18
+ URL: http://boxgrinder.org/
19
+ Source0: http://rubygems.org/gems/%{gem_name}-%{version}.gem
14
20
 
15
21
  Requires: ruby(abi) = %{rubyabi}
16
22
  Requires: rubygem(open4)
17
23
  Requires: rubygem(hashery)
18
24
  Requires: rubygem(kwalify)
25
+ Requires: rubygem(term-ansicolor)
19
26
 
20
27
  BuildRequires: rubygem(rake)
21
28
  BuildRequires: rubygem(open4)
22
29
  BuildRequires: rubygem(hashery)
23
30
  BuildRequires: rubygem(echoe)
24
31
  BuildRequires: rubygem(kwalify)
25
- # Use rspec-core until rspec are migrated to RSpec 2.x
32
+ BuildRequires: rubygems-devel
33
+ BuildRequires: rubygem(term-ansicolor)
34
+
35
+ %if 0%{?fedora} >= 17
36
+ BuildRequires: rubygem(rspec)
37
+ %else
26
38
  BuildRequires: rubygem(rspec-core)
39
+ %endif
27
40
 
28
41
  BuildArch: noarch
29
- Provides: rubygem(%{gemname}) = %{version}
42
+ Provides: rubygem(%{gem_name}) = %{version}
30
43
 
31
44
  %description
32
45
  Core library containing files required by BoxGrinder family of projects
@@ -41,41 +54,45 @@ Documentation for %{name}
41
54
 
42
55
  %prep
43
56
  %setup -q -c -T
44
- mkdir -p .%{gemdir}
45
- gem install --local --install-dir .%{gemdir} \
57
+ mkdir -p .%{gem_dir}
58
+ gem install --local --install-dir .%{gem_dir} \
46
59
  --force --rdoc %{SOURCE0}
47
60
 
48
61
  %build
49
62
 
50
63
  %install
51
- mkdir -p %{buildroot}%{gemdir}
52
- cp -a .%{gemdir}/* %{buildroot}%{gemdir}/
64
+ mkdir -p %{buildroot}%{gem_dir}
65
+ cp -a .%{gem_dir}/* %{buildroot}%{gem_dir}/
53
66
 
54
67
  %check
55
- pushd .%{geminstdir}
56
- rake spec
68
+ pushd .%{gem_instdir}
69
+ rspec -r spec_helper -r boxgrinder-core spec/**/*-spec.rb
57
70
  popd
58
71
 
59
72
  %files
60
73
  %defattr(-, root, root, -)
61
- %dir %{geminstdir}
62
- %{geminstdir}/lib
63
- %doc %{geminstdir}/CHANGELOG
64
- %doc %{geminstdir}/LICENSE
65
- %doc %{geminstdir}/README
66
- %doc %{geminstdir}/Manifest
67
- %{gemdir}/cache/%{gemname}-%{version}.gem
68
- %{gemdir}/specifications/%{gemname}-%{version}.gemspec
74
+ %dir %{gem_instdir}
75
+ %{gem_libdir}
76
+ %doc %{gem_instdir}/CHANGELOG
77
+ %doc %{gem_instdir}/LICENSE
78
+ %doc %{gem_instdir}/README
79
+ %doc %{gem_instdir}/Manifest
80
+ %{gem_cache}
81
+ %{gem_spec}
69
82
 
70
83
  %files doc
71
84
  %defattr(-, root, root, -)
72
- %{geminstdir}/spec
73
- %{geminstdir}/Rakefile
74
- %{geminstdir}/rubygem-%{gemname}.spec
75
- %{geminstdir}/%{gemname}.gemspec
76
- %{gemdir}/doc/%{gemname}-%{version}
85
+ %{gem_instdir}/spec
86
+ %{gem_instdir}/Rakefile
87
+ %{gem_instdir}/rubygem-%{gem_name}.spec
88
+ %{gem_instdir}/%{gem_name}.gemspec
89
+ %{gem_docdir}
77
90
 
78
91
  %changelog
92
+ * Thu May 24 2012 Marc Savy <msavy@redhat.com> - 0.3.12
93
+ - Upstream release: 0.3.11
94
+ - Support for printing coloured terminal output
95
+
79
96
  * Wed Feb 29 2012 Marc Savy <msavy@redhat.com> - 0.3.11
80
97
  - Upstream release: 0.3.11
81
98
  - [BGBUILD-346] Confirm Ruby 1.9.3 support
metadata CHANGED
@@ -1,83 +1,92 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: boxgrinder-core
3
- version: !ruby/object:Gem::Version
4
- hash: 5
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.3.12
5
5
  prerelease:
6
- segments:
7
- - 0
8
- - 3
9
- - 11
10
- version: 0.3.11
11
6
  platform: ruby
12
- authors:
7
+ authors:
13
8
  - Marek Goldmann
14
9
  autorequire:
15
10
  bindir: bin
16
11
  cert_chain: []
17
-
18
- date: 2012-03-19 00:00:00 Z
19
- dependencies:
20
- - !ruby/object:Gem::Dependency
12
+ date: 2012-06-14 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
21
15
  name: hashery
22
- prerelease: false
23
- requirement: &id001 !ruby/object:Gem::Requirement
16
+ requirement: !ruby/object:Gem::Requirement
24
17
  none: false
25
- requirements:
26
- - - ">="
27
- - !ruby/object:Gem::Version
28
- hash: 27
29
- segments:
30
- - 1
31
- - 3
32
- - 0
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
33
21
  version: 1.3.0
34
22
  type: :runtime
35
- version_requirements: *id001
36
- - !ruby/object:Gem::Dependency
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: 1.3.0
30
+ - !ruby/object:Gem::Dependency
37
31
  name: kwalify
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: 0.7.2
38
+ type: :runtime
38
39
  prerelease: false
39
- requirement: &id002 !ruby/object:Gem::Requirement
40
+ version_requirements: !ruby/object:Gem::Requirement
40
41
  none: false
41
- requirements:
42
- - - ">="
43
- - !ruby/object:Gem::Version
44
- hash: 7
45
- segments:
46
- - 0
47
- - 7
48
- - 2
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
49
45
  version: 0.7.2
46
+ - !ruby/object:Gem::Dependency
47
+ name: term-ansicolor
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: 1.0.0
50
54
  type: :runtime
51
- version_requirements: *id002
52
- - !ruby/object:Gem::Dependency
53
- name: open4
54
55
  prerelease: false
55
- requirement: &id003 !ruby/object:Gem::Requirement
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: 1.0.0
62
+ - !ruby/object:Gem::Dependency
63
+ name: open4
64
+ requirement: !ruby/object:Gem::Requirement
56
65
  none: false
57
- requirements:
58
- - - ">="
59
- - !ruby/object:Gem::Version
60
- hash: 23
61
- segments:
62
- - 1
63
- - 0
64
- - 0
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
65
69
  version: 1.0.0
66
70
  type: :runtime
67
- version_requirements: *id003
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: 1.0.0
68
78
  description: Core library for BoxGrinder
69
79
  email: info@boxgrinder.org
70
80
  executables: []
71
-
72
81
  extensions: []
73
-
74
- extra_rdoc_files:
82
+ extra_rdoc_files:
75
83
  - CHANGELOG
76
84
  - LICENSE
77
85
  - README
78
86
  - lib/boxgrinder-core.rb
79
87
  - lib/boxgrinder-core/appliance-parser.rb
80
88
  - lib/boxgrinder-core/appliance-validator.rb
89
+ - lib/boxgrinder-core/compat/color.rb
81
90
  - lib/boxgrinder-core/compat/yaml19.rb
82
91
  - lib/boxgrinder-core/errors.rb
83
92
  - lib/boxgrinder-core/helpers/appliance-config-helper.rb
@@ -91,7 +100,7 @@ extra_rdoc_files:
91
100
  - lib/boxgrinder-core/schemas/appliance_schema_0.8.0.yaml
92
101
  - lib/boxgrinder-core/schemas/appliance_schema_0.9.0.yaml
93
102
  - lib/boxgrinder-core/schemas/appliance_schema_0.9.6.yaml
94
- files:
103
+ files:
95
104
  - CHANGELOG
96
105
  - LICENSE
97
106
  - Manifest
@@ -101,6 +110,7 @@ files:
101
110
  - lib/boxgrinder-core.rb
102
111
  - lib/boxgrinder-core/appliance-parser.rb
103
112
  - lib/boxgrinder-core/appliance-validator.rb
113
+ - lib/boxgrinder-core/compat/color.rb
104
114
  - lib/boxgrinder-core/compat/yaml19.rb
105
115
  - lib/boxgrinder-core/errors.rb
106
116
  - lib/boxgrinder-core/helpers/appliance-config-helper.rb
@@ -141,42 +151,32 @@ files:
141
151
  - spec/spec_helper.rb
142
152
  homepage: http://boxgrinder.org
143
153
  licenses: []
144
-
145
154
  post_install_message:
146
- rdoc_options:
155
+ rdoc_options:
147
156
  - --line-numbers
148
157
  - --inline-source
149
158
  - --title
150
159
  - Boxgrinder-core
151
160
  - --main
152
161
  - README
153
- require_paths:
162
+ require_paths:
154
163
  - lib
155
- required_ruby_version: !ruby/object:Gem::Requirement
164
+ required_ruby_version: !ruby/object:Gem::Requirement
156
165
  none: false
157
- requirements:
158
- - - ">="
159
- - !ruby/object:Gem::Version
160
- hash: 3
161
- segments:
162
- - 0
163
- version: "0"
164
- required_rubygems_version: !ruby/object:Gem::Requirement
166
+ requirements:
167
+ - - ! '>='
168
+ - !ruby/object:Gem::Version
169
+ version: '0'
170
+ required_rubygems_version: !ruby/object:Gem::Requirement
165
171
  none: false
166
- requirements:
167
- - - ">="
168
- - !ruby/object:Gem::Version
169
- hash: 11
170
- segments:
171
- - 1
172
- - 2
173
- version: "1.2"
172
+ requirements:
173
+ - - ! '>='
174
+ - !ruby/object:Gem::Version
175
+ version: '1.2'
174
176
  requirements: []
175
-
176
177
  rubyforge_project: BoxGrinder
177
- rubygems_version: 1.8.11
178
+ rubygems_version: 1.8.24
178
179
  signing_key:
179
180
  specification_version: 3
180
181
  summary: Core library for BoxGrinder
181
182
  test_files: []
182
-