facterdb 1.1.0 → 1.2.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6054963540cb1c23a7c137189afbda3b013ceb886cc16877333c886179654f0c
4
- data.tar.gz: 748996b725827cc2677366ce3e4e85f449ccf9b001385823e1f5e673f78fed26
3
+ metadata.gz: 7e5f9fac062b8eb5fa3676cc2803cf1ae7cae9bace4d77646fd290494862161d
4
+ data.tar.gz: 57ead77cf910cafaa5d89ca4b3d75e30444630b1dd13c138a610a7a90d69b35b
5
5
  SHA512:
6
- metadata.gz: bbbd51730a468d577bd0b1418e838fab58cc138545572a62db68062b9911d03253d7370d9baba14b830982e2203c51c8187cc61b3b8909237364d5e69b57c782
7
- data.tar.gz: 2d0de8d00c6ccf29a31d2aa2ab5cd52692f385cc5cd3fd3e6507eb09b72f127863e64bf3e599c981d739261c134684447468de3f3f50972d85a8b6c44a9873c9
6
+ metadata.gz: 92d6ce15d7ac98f8dd29a813da8fd3729c9dce48d5b3fb500fcce007e131f282397b07eff0f97e646f0092c4cf5606b0ac3058463cb33fb9d64ebbdb1c2e4ca9
7
+ data.tar.gz: bac13a65e236ae5a528f9c4ed04d8222ba9ac034f3df9744b6530a7ce57c5d620217437c461fdc2196867628da0badec469d1ec7b2c75b1035e40edab089ae9d
data/.gitignore CHANGED
@@ -4,6 +4,7 @@ coverage/
4
4
  .vagrant/
5
5
  .envrc
6
6
  vendor/
7
+ .vendor/
7
8
  packer_cache/
8
9
  *.box
9
10
  hugo/public
@@ -1,5 +1,15 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.2.0](https://rubygems.org/gems/facterdb/versions/1.2.0) (2020-01-08)
4
+
5
+ [Full Changelog](https://github.com/camptocamp/facterdb/compare/1.1.0...1.2.0)
6
+
7
+ **Merged pull requests:**
8
+
9
+ - \[Arch Linux\] Set correct hostname, domain, fqdn [\#146](https://github.com/camptocamp/facterdb/pull/146) ([dhoppe](https://github.com/dhoppe))
10
+ - drop json as runtime dependency [\#145](https://github.com/camptocamp/facterdb/pull/145) ([bastelfreak](https://github.com/bastelfreak))
11
+ - add .vendor to .gitignore [\#144](https://github.com/camptocamp/facterdb/pull/144) ([bastelfreak](https://github.com/bastelfreak))
12
+
3
13
  ## [1.1.0](https://rubygems.org/gems/facterdb/versions/1.1.0) (2020-01-07)
4
14
 
5
15
  [Full Changelog](https://github.com/camptocamp/facterdb/compare/1.0.0...1.1.0)
@@ -21,7 +21,6 @@ Gem::Specification.new do |s|
21
21
  s.add_development_dependency 'pry'
22
22
  s.add_development_dependency 'rspec'
23
23
  s.add_development_dependency 'github_changelog_generator', '~> 1.10', '< 1.10.4'
24
- s.add_runtime_dependency 'json' if RUBY_VERSION =~ /^1\.8/
25
24
  s.add_runtime_dependency 'facter'
26
25
  s.add_runtime_dependency 'jgrep'
27
26
  end
@@ -55,7 +55,7 @@
55
55
  "gid": "root",
56
56
  "hardwareisa": "unknown",
57
57
  "hardwaremodel": "x86_64",
58
- "hostname": "archlinux",
58
+ "hostname": "foo",
59
59
  "hypervisors": {
60
60
  "virtualbox": {}
61
61
  },
@@ -324,8 +324,8 @@
324
324
  "network_lo": "127.0.0.0",
325
325
  "networking": {
326
326
  "dhcp": "10.0.2.2",
327
- "fqdn": "archlinux",
328
- "hostname": "archlinux",
327
+ "fqdn": "foo.example.com",
328
+ "hostname": "foo",
329
329
  "interfaces": {
330
330
  "eth0": {
331
331
  "bindings": [
@@ -506,5 +506,6 @@
506
506
  "uptime_hours": 0,
507
507
  "uptime_seconds": 268,
508
508
  "uuid": "eb6e0002-bde8-4896-b25f-780ea4ce4e2d",
509
+ "domain": "example.com",
509
510
  "virtual": "virtualbox"
510
511
  }
@@ -1,5 +1,5 @@
1
1
  module FacterDB
2
2
  module Version
3
- STRING = '1.1.0'
3
+ STRING = '1.2.0'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: facterdb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mickaël Canévet
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-01-07 00:00:00.000000000 Z
11
+ date: 2020-01-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: coveralls