tty-platform 0.2.0 → 0.2.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -1
- data/README.md +1 -1
- data/Rakefile +0 -2
- data/lib/tty/platform/version.rb +1 -1
- data/tasks/console.rake +1 -2
- data/tty-platform.gemspec +14 -5
- metadata +17 -12
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e6537bab3378258b9c26b4014450aa848cf5f5096281810cb5aebcf837d55c0e
|
|
4
|
+
data.tar.gz: 79e2ffcb5e730958d1e84be0f2a6cd214d43ecb717ff05f38c78531d4777c8b2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '09af84674d17c6547057d526a156d0d0c101fe9fd7071b741f08c7fcd065d147298ef7c527d64415423e86a46f7979fb21d246fe11bcc35af12280f22a0d337d'
|
|
7
|
+
data.tar.gz: 64162df9afd53b35375adef94ecadb139d275b25dc18c1aba26d19eabf12c94244f9eb162aa58a4b26f5af001af6ada8035480a914803b98dc8442c34ac9766a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,14 +1,19 @@
|
|
|
1
1
|
# Change log
|
|
2
2
|
|
|
3
|
+
## [v0.2.1] - 2019-06-15
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
* Change to relax bundler dependency
|
|
7
|
+
|
|
3
8
|
## [v0.2.0] - 2018-12-02
|
|
4
9
|
|
|
5
10
|
### Changed
|
|
6
11
|
* Change to Ruby >= 2.0
|
|
7
12
|
|
|
8
|
-
|
|
9
13
|
## [v0.1.0] - 2015-05-16
|
|
10
14
|
|
|
11
15
|
* Initial implementation and release
|
|
12
16
|
|
|
17
|
+
[v0.2.1]: https://github.com/piotrmurach/tty-platform/compare/v0.2.0...v0.2.1
|
|
13
18
|
[v0.2.0]: https://github.com/piotrmurach/tty-platform/compare/v0.1.0...v0.2.0
|
|
14
19
|
[v0.1.0]: https://github.com/piotrmurach/tty-platform/compare/v0.1.0
|
data/README.md
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
[coverage]: https://coveralls.io/github/piotrmurach/tty-platform
|
|
20
20
|
[inchpages]: http://inch-ci.org/github/piotrmurach/tty-platform
|
|
21
21
|
|
|
22
|
-
> Terminal platform query methods for detecting different operating systems.
|
|
22
|
+
> Terminal platform query methods for detecting different operating systems and their properties.
|
|
23
23
|
|
|
24
24
|
**TTY::Platform** provides independent operating system detection component for [TTY](https://github.com/piotrmurach/tty) toolkit.
|
|
25
25
|
|
data/Rakefile
CHANGED
data/lib/tty/platform/version.rb
CHANGED
data/tasks/console.rake
CHANGED
data/tty-platform.gemspec
CHANGED
|
@@ -6,12 +6,21 @@ Gem::Specification.new do |spec|
|
|
|
6
6
|
spec.name = "tty-platform"
|
|
7
7
|
spec.version = TTY::Platform::VERSION
|
|
8
8
|
spec.authors = ["Piotr Murach"]
|
|
9
|
-
spec.email = [""]
|
|
10
|
-
spec.summary = %q{Query methods for detecting different operating systems.}
|
|
11
|
-
spec.description = %q{Query methods for detecting different operating systems.}
|
|
9
|
+
spec.email = ["me@piotrmurach.com"]
|
|
10
|
+
spec.summary = %q{Query methods for detecting different operating systems and their properties.}
|
|
11
|
+
spec.description = %q{Query methods for detecting different operating systems and their properties.}
|
|
12
12
|
spec.homepage = "https://github.com/piotrmurach/tty-platform"
|
|
13
13
|
spec.license = "MIT"
|
|
14
|
-
|
|
14
|
+
if spec.respond_to?(:metadata=)
|
|
15
|
+
spec.metadata = {
|
|
16
|
+
"allowed_push_host" => "https://rubygems.org",
|
|
17
|
+
"bug_tracker_uri" => "#{spec.homepage}/issues",
|
|
18
|
+
"changelog_uri" => "#{spec.homepage}/blob/master/CHANGELOG.md",
|
|
19
|
+
"documentation_uri" => "https://www.rubydoc.info/gems/tty-platform",
|
|
20
|
+
"homepage_uri" => spec.homepage,
|
|
21
|
+
"source_code_uri" => spec.homepage
|
|
22
|
+
}
|
|
23
|
+
end
|
|
15
24
|
spec.files = Dir['{lib,spec}/**/*.rb']
|
|
16
25
|
spec.files += Dir['{bin,tasks}/*', 'tty-platform.gemspec']
|
|
17
26
|
spec.files += Dir['README.md', 'CHANGELOG.md', 'LICENSE.txt', 'Rakefile']
|
|
@@ -21,7 +30,7 @@ Gem::Specification.new do |spec|
|
|
|
21
30
|
|
|
22
31
|
spec.required_ruby_version = '>= 2.0.0'
|
|
23
32
|
|
|
24
|
-
spec.add_development_dependency
|
|
33
|
+
spec.add_development_dependency 'bundler', '>= 1.5'
|
|
25
34
|
spec.add_development_dependency 'rspec', '~> 3.1'
|
|
26
35
|
spec.add_development_dependency 'rake'
|
|
27
36
|
end
|
metadata
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tty-platform
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Piotr Murach
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-06-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - "
|
|
17
|
+
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '1.
|
|
19
|
+
version: '1.5'
|
|
20
20
|
type: :development
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- - "
|
|
24
|
+
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '1.
|
|
26
|
+
version: '1.5'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: rspec
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -52,9 +52,9 @@ dependencies:
|
|
|
52
52
|
- - ">="
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '0'
|
|
55
|
-
description: Query methods for detecting different operating systems.
|
|
55
|
+
description: Query methods for detecting different operating systems and their properties.
|
|
56
56
|
email:
|
|
57
|
-
-
|
|
57
|
+
- me@piotrmurach.com
|
|
58
58
|
executables: []
|
|
59
59
|
extensions: []
|
|
60
60
|
extra_rdoc_files: []
|
|
@@ -77,7 +77,13 @@ files:
|
|
|
77
77
|
homepage: https://github.com/piotrmurach/tty-platform
|
|
78
78
|
licenses:
|
|
79
79
|
- MIT
|
|
80
|
-
metadata:
|
|
80
|
+
metadata:
|
|
81
|
+
allowed_push_host: https://rubygems.org
|
|
82
|
+
bug_tracker_uri: https://github.com/piotrmurach/tty-platform/issues
|
|
83
|
+
changelog_uri: https://github.com/piotrmurach/tty-platform/blob/master/CHANGELOG.md
|
|
84
|
+
documentation_uri: https://www.rubydoc.info/gems/tty-platform
|
|
85
|
+
homepage_uri: https://github.com/piotrmurach/tty-platform
|
|
86
|
+
source_code_uri: https://github.com/piotrmurach/tty-platform
|
|
81
87
|
post_install_message:
|
|
82
88
|
rdoc_options: []
|
|
83
89
|
require_paths:
|
|
@@ -93,11 +99,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
93
99
|
- !ruby/object:Gem::Version
|
|
94
100
|
version: '0'
|
|
95
101
|
requirements: []
|
|
96
|
-
|
|
97
|
-
rubygems_version: 2.7.3
|
|
102
|
+
rubygems_version: 3.0.3
|
|
98
103
|
signing_key:
|
|
99
104
|
specification_version: 4
|
|
100
|
-
summary: Query methods for detecting different operating systems.
|
|
105
|
+
summary: Query methods for detecting different operating systems and their properties.
|
|
101
106
|
test_files:
|
|
102
107
|
- spec/spec_helper.rb
|
|
103
108
|
- spec/unit/new_spec.rb
|