facter 2.0.1.rc3 → 2.0.1.rc4
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of facter might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/ext/redhat/facter.spec.erb +3 -3
- data/lib/facter.rb +0 -1
- data/lib/facter/version.rb +1 -1
- metadata +2 -3
- data/lib/facter/util/monkey_patches.rb +0 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 078d8616cdaf5b6e8906e95afc88919c04a1a9e2
|
4
|
+
data.tar.gz: ddca0c1785d6d2d56e33b672dd1a2a2e3723c1df
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 16270c23959145b3cd94d4f90ac841906b463690ea0a65034ff877d69cecd3ce22d8c607d25fc74fc8896dfb7e9fe721f767e6ad07efb1c030853d5adc11fcf5
|
7
|
+
data.tar.gz: abced6a0f61270e139d7b1264ba39d13934dd43645fffafe0103becdbe961e658988e8371c5f64f3c229025c58f98f32e027482a474ae319946c57a940b679b7
|
data/ext/redhat/facter.spec.erb
CHANGED
@@ -24,7 +24,7 @@ Source0: http://puppetlabs.com/downloads/%{name}/%{name}-%{realversion}.t
|
|
24
24
|
|
25
25
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
26
26
|
|
27
|
-
Requires: ruby >= 1.8.
|
27
|
+
Requires: ruby >= 1.8.7
|
28
28
|
Requires: which
|
29
29
|
# dmidecode and pciutils are not available on all arches
|
30
30
|
%ifarch %ix86 x86_64 ia64
|
@@ -32,8 +32,8 @@ Requires: dmidecode
|
|
32
32
|
Requires: pciutils
|
33
33
|
%endif
|
34
34
|
Requires: virt-what
|
35
|
-
Requires: ruby >= 1.8.
|
36
|
-
BuildRequires: ruby >= 1.8.
|
35
|
+
Requires: ruby >= 1.8.7
|
36
|
+
BuildRequires: ruby >= 1.8.7
|
37
37
|
|
38
38
|
# In Fedora 17+ or RHEL 7+ ruby-rdoc is called rubygem-rdoc
|
39
39
|
%if 0%{?fedora} >= 17 || 0%{?rhel} >= 7
|
data/lib/facter.rb
CHANGED
data/lib/facter/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: facter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.1.
|
4
|
+
version: 2.0.1.rc4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Puppet Labs
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-03-
|
11
|
+
date: 2014-03-27 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: You can prove anything with facts!
|
14
14
|
email: info@puppetlabs.com
|
@@ -126,7 +126,6 @@ files:
|
|
126
126
|
- lib/facter/util/macosx.rb
|
127
127
|
- lib/facter/util/manufacturer.rb
|
128
128
|
- lib/facter/util/memory.rb
|
129
|
-
- lib/facter/util/monkey_patches.rb
|
130
129
|
- lib/facter/util/netmask.rb
|
131
130
|
- lib/facter/util/normalization.rb
|
132
131
|
- lib/facter/util/nothing_loader.rb
|
@@ -1,8 +0,0 @@
|
|
1
|
-
# This provides an alias for RbConfig to Config for versions of Ruby older then
|
2
|
-
# version 1.8.5. This allows us to use RbConfig in place of the older Config in
|
3
|
-
# our code and still be compatible with at least Ruby 1.8.1.
|
4
|
-
require 'rbconfig'
|
5
|
-
|
6
|
-
unless defined? ::RbConfig
|
7
|
-
::RbConfig = ::Config
|
8
|
-
end
|