facter 2.0.1.rc3-x86-mingw32 → 2.0.1.rc4-x86-mingw32
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: 2311e1f998feea3647fd490638f6c2b54f87eb5a
|
4
|
+
data.tar.gz: ddca0c1785d6d2d56e33b672dd1a2a2e3723c1df
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2997f74d5a27183d0c35d2afef936285e7e4219447d2b8803c74612018bbf52c8fc8ca9fc665a09c44f796cf3cc565ec5b3e72c21604de71362cb67999247fa6
|
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: x86-mingw32
|
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
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ffi
|
@@ -224,7 +224,6 @@ files:
|
|
224
224
|
- lib/facter/util/macosx.rb
|
225
225
|
- lib/facter/util/manufacturer.rb
|
226
226
|
- lib/facter/util/memory.rb
|
227
|
-
- lib/facter/util/monkey_patches.rb
|
228
227
|
- lib/facter/util/netmask.rb
|
229
228
|
- lib/facter/util/normalization.rb
|
230
229
|
- 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
|