tty-pie 0.2.0 → 0.3.0
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 +10 -0
- data/README.md +2 -2
- data/bin/console +1 -1
- data/lib/tty/pie/version.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- data/tasks/console.rake +1 -3
- data/tty-pie.gemspec +12 -7
- metadata +22 -18
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: de6504c8f8b127327c9e16616ed1c807dc273f1dbd893574639e576bac01924e
|
4
|
+
data.tar.gz: 0ecf27fcd39ad0836015ab3f4d10d122fd43ef89885c45a9a91d94b3a297c133
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ee5fc9ee8c2e5c6ec944ac35a43f204a7a87f1ac36f69daded6e909c07e372893c8b1050ba4d64c887a0d9b99156bc463d25a7fcea424655a1cb5f18eb2a8b1d
|
7
|
+
data.tar.gz: 24053d36773fa6de805ef8e2715eeb306238c293e066d3e43a0b6b58dad484f21962a05bb44deb46cb1ebb4343eafe8ab812b68ce530e32fc8f042901cc56434
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Change log
|
2
2
|
|
3
|
+
## [v0.3.0] - 2019-08-02
|
4
|
+
|
5
|
+
### Changed
|
6
|
+
* Change to update tty-cursor & pastel versions
|
7
|
+
* Change to stop limiting dev dependencies
|
8
|
+
|
9
|
+
### Fixed
|
10
|
+
* Fix bin/console to load correct filename
|
11
|
+
|
3
12
|
## [v0.2.0] - 2019-01-11
|
4
13
|
|
5
14
|
### Added
|
@@ -20,5 +29,6 @@
|
|
20
29
|
|
21
30
|
* Initial implementation and release
|
22
31
|
|
32
|
+
[v0.3.0]: https://github.com/piotrmurach/tty-pie/compare/v0.2.0...v0.3.0
|
23
33
|
[v0.2.0]: https://github.com/piotrmurach/tty-pie/compare/v0.1.0...v0.2.0
|
24
34
|
[v0.1.0]: https://github.com/piotrmurach/tty-pie/compare/v0.1.0
|
data/README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
<div align="center">
|
2
|
-
<a href="https://piotrmurach.github.io/tty" target="_blank"><img width="130" src="https://github.com/piotrmurach/tty/
|
2
|
+
<a href="https://piotrmurach.github.io/tty" target="_blank"><img width="130" src="https://github.com/piotrmurach/tty/raw/master/images/tty.png" alt="tty logo" /></a>
|
3
3
|
</div>
|
4
4
|
|
5
5
|
# TTY:Pie [][gitter]
|
@@ -372,7 +372,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
372
372
|
|
373
373
|
## Contributing
|
374
374
|
|
375
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/piotrmurach/tty-
|
375
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/piotrmurach/tty-pie. 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.
|
376
376
|
|
377
377
|
## License
|
378
378
|
|
data/bin/console
CHANGED
data/lib/tty/pie/version.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
@@ -20,7 +20,7 @@ require "tty/pie"
|
|
20
20
|
|
21
21
|
RSpec.configure do |config|
|
22
22
|
# Enable flags like --only-failures and --next-failure
|
23
|
-
config.example_status_persistence_file_path = ".rspec_status"
|
23
|
+
# config.example_status_persistence_file_path = ".rspec_status"
|
24
24
|
|
25
25
|
# Disable RSpec exposing methods globally on `Module` and `main`
|
26
26
|
config.disable_monkey_patching!
|
data/tasks/console.rake
CHANGED
data/tty-pie.gemspec
CHANGED
@@ -6,13 +6,18 @@ Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = "tty-pie"
|
7
7
|
spec.version = TTY::Pie::VERSION
|
8
8
|
spec.authors = ["Piotr Murach"]
|
9
|
-
spec.email = [""]
|
10
|
-
|
9
|
+
spec.email = ["me@piotrmurach.com"]
|
11
10
|
spec.summary = %q{Draw pie charts in your terminal window.}
|
12
11
|
spec.description = %q{Draw pie charts in your terminal window.}
|
13
12
|
spec.homepage = "https://piotrmurach.github.io/tty"
|
14
13
|
spec.license = "MIT"
|
15
|
-
|
14
|
+
if spec.respond_to?(:metadata)
|
15
|
+
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
16
|
+
spec.metadata["changelog_uri"] = "https://github.com/piotrmurach/tty-pie/blob/master/CHANGELOG.md"
|
17
|
+
spec.metadata["documentation_uri"] = "https://www.rubydoc.info/gems/tty-pie"
|
18
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
19
|
+
spec.metadata["source_code_uri"] = "https://github.com/piotrmurach/tty-pie"
|
20
|
+
end
|
16
21
|
spec.files = Dir['{lib,spec,examples}/**/*.rb']
|
17
22
|
spec.files += Dir['{bin,tasks}/*', 'tty-pie.gemspec']
|
18
23
|
spec.files += Dir['README.md', 'CHANGELOG.md', 'LICENSE.txt', 'Rakefile']
|
@@ -20,10 +25,10 @@ Gem::Specification.new do |spec|
|
|
20
25
|
|
21
26
|
spec.required_ruby_version = '>= 2.0.0'
|
22
27
|
|
23
|
-
spec.add_dependency 'pastel', '~> 0.7.
|
24
|
-
spec.add_dependency 'tty-cursor', '~> 0.
|
28
|
+
spec.add_dependency 'pastel', '~> 0.7.3'
|
29
|
+
spec.add_dependency 'tty-cursor', '~> 0.7'
|
25
30
|
|
26
|
-
spec.add_development_dependency 'bundler', '
|
27
|
-
spec.add_development_dependency 'rake'
|
31
|
+
spec.add_development_dependency 'bundler', '>= 1.5'
|
32
|
+
spec.add_development_dependency 'rake'
|
28
33
|
spec.add_development_dependency 'rspec', '~> 3.0'
|
29
34
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tty-pie
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Piotr Murach
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-08-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pastel
|
@@ -16,56 +16,56 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.7.
|
19
|
+
version: 0.7.3
|
20
20
|
type: :runtime
|
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: 0.7.
|
26
|
+
version: 0.7.3
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: tty-cursor
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 0.
|
33
|
+
version: '0.7'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 0.
|
40
|
+
version: '0.7'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: bundler
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- - "
|
45
|
+
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: '1.
|
47
|
+
version: '1.5'
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- - "
|
52
|
+
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: '1.
|
54
|
+
version: '1.5'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: rake
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
|
-
- - "
|
59
|
+
- - ">="
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: '
|
61
|
+
version: '0'
|
62
62
|
type: :development
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
|
-
- - "
|
66
|
+
- - ">="
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: '
|
68
|
+
version: '0'
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: rspec
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -82,7 +82,7 @@ dependencies:
|
|
82
82
|
version: '3.0'
|
83
83
|
description: Draw pie charts in your terminal window.
|
84
84
|
email:
|
85
|
-
-
|
85
|
+
- me@piotrmurach.com
|
86
86
|
executables: []
|
87
87
|
extensions: []
|
88
88
|
extra_rdoc_files: []
|
@@ -115,7 +115,12 @@ files:
|
|
115
115
|
homepage: https://piotrmurach.github.io/tty
|
116
116
|
licenses:
|
117
117
|
- MIT
|
118
|
-
metadata:
|
118
|
+
metadata:
|
119
|
+
allowed_push_host: https://rubygems.org
|
120
|
+
changelog_uri: https://github.com/piotrmurach/tty-pie/blob/master/CHANGELOG.md
|
121
|
+
documentation_uri: https://www.rubydoc.info/gems/tty-pie
|
122
|
+
homepage_uri: https://piotrmurach.github.io/tty
|
123
|
+
source_code_uri: https://github.com/piotrmurach/tty-pie
|
119
124
|
post_install_message:
|
120
125
|
rdoc_options: []
|
121
126
|
require_paths:
|
@@ -131,8 +136,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
131
136
|
- !ruby/object:Gem::Version
|
132
137
|
version: '0'
|
133
138
|
requirements: []
|
134
|
-
|
135
|
-
rubygems_version: 2.7.3
|
139
|
+
rubygems_version: 3.0.3
|
136
140
|
signing_key:
|
137
141
|
specification_version: 4
|
138
142
|
summary: Draw pie charts in your terminal window.
|