tty 0.6.0 → 0.6.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
  SHA1:
3
- metadata.gz: 07e4420225b26d591c5808c75a22345b74829df6
4
- data.tar.gz: a409678307999ca35df8470451c18ee823de4899
3
+ metadata.gz: 27c79661b2cae0b7f2f37693ec8edd22982190d9
4
+ data.tar.gz: 44e1620de6b0e67ae05c10d57e4c300a71071ff7
5
5
  SHA512:
6
- metadata.gz: b2d142aa5bac867c62e8f3c21173a7855b3d4a18cc0c356d8939944871f87de6fa4fa0aa32770eaa20f0044ca380ee1a5f2097afd4479c80b61e153e32d37d37
7
- data.tar.gz: 059ea6e8da18de39646be9da9cc3cc115b0fc89a2354bf3251e3ce6846a55beb7010863a82f92372a954af9d6a34a7c7bd2ba4c242f91a95956391e8461003a8
6
+ metadata.gz: 0d377c8cf5d7449873d3f572a292fdc8c4ed071f57cba9c17a749bed3c61d2721dd5b9ed14740cb9dfa10fc2cea8633394086e752ea2f1ca07c0a3f4fe7c959f
7
+ data.tar.gz: 9da8c027e9f46ac52c5a4e245d64e14cdd071d09e7acc889f4a2e5c684945c6836b51834adc2a93cc014ac5572b1918d9b365c9e6caba42d2ff438ccbdd3d551
@@ -1,5 +1,10 @@
1
1
  # Change log
2
2
 
3
+ ## [v0.6.1] - 2017-02-26
4
+
5
+ ### Changed
6
+ * Update tty-command dependency
7
+
3
8
  ## [v0.6.0] - 2017-01-28
4
9
 
5
10
  ### Added
@@ -103,6 +108,11 @@
103
108
  * Improve method documentation across library
104
109
  * Semantic changes across library to improve code readability
105
110
 
111
+ ## [v0.0.1] - 2012-09-30
112
+
113
+ * Initial release
114
+
115
+ [v0.6.1]: https://github.com/piotrmurach/tty/compare/v0.6.0...v0.6.1
106
116
  [v0.6.0]: https://github.com/piotrmurach/tty/compare/v0.5.0...v0.6.0
107
117
  [v0.5.0]: https://github.com/piotrmurach/tty/compare/v0.4.0...v0.5.0
108
118
  [v0.4.0]: https://github.com/piotrmurach/tty/compare/v0.3.2...v0.4.0
data/README.md CHANGED
@@ -29,7 +29,7 @@ Even more so, any command line application needs a clear way of communicating it
29
29
  ## Features
30
30
 
31
31
  * Jump-start development of your command line app the Unix way.
32
- * Fully modular, choose out of many [components](#2-components) to suite your needs.
32
+ * Fully modular, choose out of many [components](#2-components) to suit your needs.
33
33
  * All tty components are small packages that do one thing well.
34
34
  * Fully tested with major ruby interpreters.
35
35
 
@@ -63,6 +63,8 @@ Or install it yourself as:
63
63
  To ask for user input use `TTY::Prompt`:
64
64
 
65
65
  ```ruby
66
+ require 'tty'
67
+
66
68
  prompt = TTY::Prompt.new
67
69
  prompt.yes?('Do you like Ruby?')
68
70
  # => Do you like Ruby? (Y/n)
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
2
 
3
3
  module TTY
4
- VERSION = "0.6.0"
4
+ VERSION = "0.6.1"
5
5
  end # TTY
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
19
19
 
20
20
  spec.add_dependency 'tty-color', '~> 0.4.0'
21
21
  spec.add_dependency 'tty-cursor', '~> 0.3.0'
22
- spec.add_dependency 'tty-command', '~> 0.3.0'
22
+ spec.add_dependency 'tty-command', '~> 0.4.0'
23
23
  spec.add_dependency 'tty-editor', '~> 0.1.0'
24
24
  spec.add_dependency 'tty-file', '~> 0.2.0'
25
25
  spec.add_dependency 'tty-pager', '~> 0.5.0'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tty
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.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: 2017-01-28 00:00:00.000000000 Z
11
+ date: 2017-02-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tty-color
@@ -44,14 +44,14 @@ dependencies:
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: 0.3.0
47
+ version: 0.4.0
48
48
  type: :runtime
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: 0.3.0
54
+ version: 0.4.0
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: tty-editor
57
57
  requirement: !ruby/object:Gem::Requirement