tty-platform 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 196f25ef722267ed1b9c152af8d10624cba1141aa1f5f258ef0373fc922e6c2b
4
- data.tar.gz: 85aba10b4d39a14cb3d8cf019a99427d2508e5c8d0bcd74506c2cf6689aa2a39
3
+ metadata.gz: e6537bab3378258b9c26b4014450aa848cf5f5096281810cb5aebcf837d55c0e
4
+ data.tar.gz: 79e2ffcb5e730958d1e84be0f2a6cd214d43ecb717ff05f38c78531d4777c8b2
5
5
  SHA512:
6
- metadata.gz: 12560309de595c8bc7a720a50a841e4cd3b893897b25437fc3a34bb017e4c841b506f9fb12761544dc159e80ea9827470451a43458966352e50bfe269300b957
7
- data.tar.gz: 22b15f1e31d142ce52f6abd650af07404dfc1ad29b73982b44dea1c9e1d85cb7ccc46db1fadc1ce5e82f5d0ef590471ebf8a304bb541e2e2f1afb861f9325a92
6
+ metadata.gz: '09af84674d17c6547057d526a156d0d0c101fe9fd7071b741f08c7fcd065d147298ef7c527d64415423e86a46f7979fb21d246fe11bcc35af12280f22a0d337d'
7
+ data.tar.gz: 64162df9afd53b35375adef94ecadb139d275b25dc18c1aba26d19eabf12c94244f9eb162aa58a4b26f5af001af6ada8035480a914803b98dc8442c34ac9766a
@@ -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
@@ -1,5 +1,3 @@
1
- # coding: utf-8
2
-
3
1
  require 'bundler/gem_tasks'
4
2
 
5
3
  FileList['tasks/**/*.rake'].each(&method(:import))
@@ -2,6 +2,6 @@
2
2
 
3
3
  module TTY
4
4
  class Platform
5
- VERSION = "0.2.0"
5
+ VERSION = "0.2.1"
6
6
  end # Platform
7
7
  end # TTY
@@ -1,5 +1,3 @@
1
- # encoding: utf-8
2
-
3
1
  desc 'Load gem inside irb console'
4
2
  task :console do
5
3
  require 'irb'
@@ -8,3 +6,4 @@ task :console do
8
6
  ARGV.clear
9
7
  IRB.start
10
8
  end
9
+ task c: :console
@@ -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 "bundler", "~> 1.6"
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.0
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: 2018-12-02 00:00:00.000000000 Z
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.6'
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.6'
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
- rubyforge_project:
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