semantic_puppet 0.1.0 → 0.1.1
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.md +5 -2
- data/LICENSE +15 -0
- data/lib/semantic_puppet.rb +1 -1
- data/semantic_puppet.gemspec +1 -0
- metadata +5 -3
data/CHANGELOG.md
CHANGED
|
@@ -2,8 +2,11 @@
|
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
4
4
|
|
|
5
|
-
##
|
|
6
|
-
###
|
|
5
|
+
## 0.1.1 - 2015-04-01
|
|
6
|
+
### Added
|
|
7
|
+
- license information
|
|
8
|
+
### Removed
|
|
9
|
+
- template entry from CHANGELOG.md
|
|
7
10
|
|
|
8
11
|
## 0.1.0 - 2015-03-23
|
|
9
12
|
### Added
|
data/LICENSE
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Copyright (C) 2005-2015 Puppet Labs Inc
|
|
2
|
+
|
|
3
|
+
Puppet Labs can be contacted at: info@puppetlabs.com
|
|
4
|
+
|
|
5
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
you may not use this file except in compliance with the License.
|
|
7
|
+
You may obtain a copy of the License at
|
|
8
|
+
|
|
9
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
|
|
11
|
+
Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
See the License for the specific language governing permissions and
|
|
15
|
+
limitations under the License.
|
data/lib/semantic_puppet.rb
CHANGED
data/semantic_puppet.gemspec
CHANGED
|
@@ -11,6 +11,7 @@ spec = Gem::Specification.new do |s|
|
|
|
11
11
|
s.homepage = "https://github.com/puppetlabs/semantic_puppet-gem"
|
|
12
12
|
s.summary = "Useful tools for working with Semantic Versions."
|
|
13
13
|
s.description = %q{Tools used by Puppet to parse, validate, and compare Semantic Versions and Version Ranges and to query and resolve module dependencies.}
|
|
14
|
+
s.licenses = ['Apache-2.0']
|
|
14
15
|
|
|
15
16
|
# Manifest
|
|
16
17
|
s.files = `git ls-files`.split("\n")
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: semantic_puppet
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
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: 2015-
|
|
12
|
+
date: 2015-04-01 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rake
|
|
@@ -120,6 +120,7 @@ files:
|
|
|
120
120
|
- CHANGELOG.md
|
|
121
121
|
- Gemfile
|
|
122
122
|
- Gemfile.lock
|
|
123
|
+
- LICENSE
|
|
123
124
|
- README.md
|
|
124
125
|
- Rakefile
|
|
125
126
|
- lib/semantic_puppet.rb
|
|
@@ -142,7 +143,8 @@ files:
|
|
|
142
143
|
- spec/unit/semantic_puppet/version_range_spec.rb
|
|
143
144
|
- spec/unit/semantic_puppet/version_spec.rb
|
|
144
145
|
homepage: https://github.com/puppetlabs/semantic_puppet-gem
|
|
145
|
-
licenses:
|
|
146
|
+
licenses:
|
|
147
|
+
- Apache-2.0
|
|
146
148
|
post_install_message:
|
|
147
149
|
rdoc_options: []
|
|
148
150
|
require_paths:
|