chloride 0.2.2 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of chloride might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/README.md +13 -1
- data/lib/chloride/action/detect_platform.rb +2 -2
- data/lib/chloride/version.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1b1d9fd43afd86f217fe0f203debb0324a911c42
|
4
|
+
data.tar.gz: d5fb4c549711b927d82f6419ab6603ef6285e571
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c0955bc1e67f7a11640e060e07306f0c04c54c3568e1486d599fa027e30f92ba9fb33cfdeafc7379ea0591ea9bd28d075920617414b39b4d9b84461b80f887ce
|
7
|
+
data.tar.gz: e092bb897e35bbf3183b81f90fca58cf10c23614b225dad3809a2088d7ed9218c1355f76e040913e7230b7fec7f8a15170a12c3cbf3c00958fb611d2940774bb
|
data/README.md
CHANGED
@@ -38,4 +38,16 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
38
38
|
|
39
39
|
## Contributing
|
40
40
|
|
41
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/puppetlabs/chloride. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
41
|
+
[Bug reports](https://github.com/puppetlabs/chloride/issues) and [pull requests](https://github.com/puppetlabs/chloride/pulls) are welcome on GitHub at https://github.com/puppetlabs/chloride. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
42
|
+
|
43
|
+
## License
|
44
|
+
|
45
|
+
See [LICENSE](LICENSE) file.
|
46
|
+
|
47
|
+
## Support
|
48
|
+
|
49
|
+
We use [semantic version numbers](https://semvar.org) for our releases, and recommend that users stay as up-to-date as possible by upgrading to patch releases and minor releases as they become available.
|
50
|
+
|
51
|
+
Bugfixes and ongoing development will occur in minor releases for the current major version.
|
52
|
+
|
53
|
+
Technical support is __not__ provided for this library.
|
@@ -37,7 +37,7 @@ class Chloride::Action::DetectPlatform < Chloride::Action
|
|
37
37
|
:rhel
|
38
38
|
when /amazonami/
|
39
39
|
:amazon
|
40
|
-
when /
|
40
|
+
when /suse/
|
41
41
|
:sles
|
42
42
|
else
|
43
43
|
distribution.to_sym
|
@@ -45,7 +45,7 @@ class Chloride::Action::DetectPlatform < Chloride::Action
|
|
45
45
|
|
46
46
|
release = lsb_data['Release'].gsub(/\s+/, '')
|
47
47
|
release = case distribution
|
48
|
-
when :centos, :rhel
|
48
|
+
when :centos, :rhel, :sles
|
49
49
|
release.split('.')[0]
|
50
50
|
when :debian
|
51
51
|
if release == 'testing'
|
data/lib/chloride/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: chloride
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brandon High
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: exe
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2017-02-13 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: bundler
|
@@ -196,9 +196,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
196
196
|
version: '0'
|
197
197
|
requirements: []
|
198
198
|
rubyforge_project:
|
199
|
-
rubygems_version: 2.
|
199
|
+
rubygems_version: 2.2.5
|
200
200
|
signing_key:
|
201
201
|
specification_version: 4
|
202
202
|
summary: A simple streaming NetSSH implementation
|
203
203
|
test_files: []
|
204
|
-
has_rdoc:
|