tty-pie 0.2.0 → 0.3.0

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: 22d6cb76f39389059b746df28e9409d99ab1591d77edbe9f76bc1e9a7ea5e332
4
- data.tar.gz: 9e735e70ab7286e7ae5a0ee3e2d949f0734f8e002b37cf82b685f31e7729b7f8
3
+ metadata.gz: de6504c8f8b127327c9e16616ed1c807dc273f1dbd893574639e576bac01924e
4
+ data.tar.gz: 0ecf27fcd39ad0836015ab3f4d10d122fd43ef89885c45a9a91d94b3a297c133
5
5
  SHA512:
6
- metadata.gz: 291a12624a6fd02557e4f47c7535580dc215574d3804df5c7da454be0d9f50514a1776e58ea7fd9f73008c3cfe4a3f6405b116864d603e7635b40c76c9179738
7
- data.tar.gz: d248aef95ff8a16ba71dc28c3da25d13d65b5360effe61b5893fc7088f3c32e82406e83f8738f8708f6fd436cf684e9a7786d6a49587a8b02498b1deecf6f855
6
+ metadata.gz: ee5fc9ee8c2e5c6ec944ac35a43f204a7a87f1ac36f69daded6e909c07e372893c8b1050ba4d64c887a0d9b99156bc463d25a7fcea424655a1cb5f18eb2a8b1d
7
+ data.tar.gz: 24053d36773fa6de805ef8e2715eeb306238c293e066d3e43a0b6b58dad484f21962a05bb44deb46cb1ebb4343eafe8ab812b68ce530e32fc8f042901cc56434
@@ -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/blob/master/images/tty.png" alt="tty logo" /></a>
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](https://badges.gitter.im/Join%20Chat.svg)][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-pie_chart. 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.
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
 
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  require "bundler/setup"
4
- require "tty/pie_chart"
4
+ require "tty/pie"
5
5
 
6
6
  # You can add fixtures and/or initialization code here to make experimenting
7
7
  # with your gem easier. You can also use a different console, if you like.
@@ -2,6 +2,6 @@
2
2
 
3
3
  module TTY
4
4
  class Pie
5
- VERSION = "0.2.0"
5
+ VERSION = "0.3.0"
6
6
  end # Pie
7
7
  end # TTY
@@ -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!
@@ -1,10 +1,8 @@
1
- # encoding: utf-8
2
-
3
1
  desc 'Load gem inside irb console'
4
2
  task :console do
5
3
  require 'irb'
6
4
  require 'irb/completion'
7
- require File.join(__FILE__, '../../lib/tty-pie_chart')
5
+ require File.join(__FILE__, '../../lib/tty-pie')
8
6
  ARGV.clear
9
7
  IRB.start
10
8
  end
@@ -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.2'
24
- spec.add_dependency 'tty-cursor', '~> 0.6.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', '~> 1.16'
27
- spec.add_development_dependency 'rake', '~> 10.0'
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.2.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-01-11 00:00:00.000000000 Z
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.2
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.2
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.6.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.6.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.16'
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.16'
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: '10.0'
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: '10.0'
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
- rubyforge_project:
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.