rspec-system 2.1.1 → 2.1.2
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 +1 -0
- data/CHANGELOG.md +12 -1
- data/rspec-system.gemspec +2 -1
- metadata +4 -4
- data/.ruby-version +0 -1
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,7 +1,18 @@
|
|
1
|
+
2.1.2
|
2
|
+
=====
|
3
|
+
|
4
|
+
A meta-data only release, which adds the license to the gem specification.
|
5
|
+
|
6
|
+
-------------------------------
|
7
|
+
|
1
8
|
2.1.1
|
2
9
|
=====
|
3
10
|
|
4
|
-
This bug fix
|
11
|
+
This bug fix adds lsb_* facts to the prefabs for: centos-64 and fedora-18
|
12
|
+
|
13
|
+
#### Detailed Changes
|
14
|
+
|
15
|
+
* Add some missing facts (Mickaël Canévet)
|
5
16
|
|
6
17
|
-------------------------------
|
7
18
|
|
data/rspec-system.gemspec
CHANGED
@@ -2,11 +2,12 @@
|
|
2
2
|
Gem::Specification.new do |s|
|
3
3
|
# Metadata
|
4
4
|
s.name = "rspec-system"
|
5
|
-
s.version = "2.1.
|
5
|
+
s.version = "2.1.2"
|
6
6
|
s.authors = ["Ken Barber"]
|
7
7
|
s.email = ["info@puppetlabs.com"]
|
8
8
|
s.homepage = "https://github.com/puppetlabs/rspec-system"
|
9
9
|
s.summary = "System testing with rspec"
|
10
|
+
s.license = "Apache 2.0"
|
10
11
|
|
11
12
|
# Manifest
|
12
13
|
s.files = `git ls-files`.split("\n")
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rspec-system
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1.
|
4
|
+
version: 2.1.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-07-
|
12
|
+
date: 2013-07-24 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rspec
|
@@ -132,7 +132,6 @@ extra_rdoc_files: []
|
|
132
132
|
files:
|
133
133
|
- .gitignore
|
134
134
|
- .nodeset.yml
|
135
|
-
- .ruby-version
|
136
135
|
- .travis.yml
|
137
136
|
- CHANGELOG.md
|
138
137
|
- Gemfile
|
@@ -184,7 +183,8 @@ files:
|
|
184
183
|
- spec/unit/result_spec.rb
|
185
184
|
- spec/unit/utils_spec.rb
|
186
185
|
homepage: https://github.com/puppetlabs/rspec-system
|
187
|
-
licenses:
|
186
|
+
licenses:
|
187
|
+
- Apache 2.0
|
188
188
|
post_install_message:
|
189
189
|
rdoc_options: []
|
190
190
|
require_paths:
|
data/.ruby-version
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
ruby-1.9.3@rspec-system
|