tty-editor 0.2.1 → 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
  SHA1:
3
- metadata.gz: 35623ca83160e42d7355d444b94fb2a05289b152
4
- data.tar.gz: 7d7b9970a763032585d54d60b545172a3c69705e
3
+ metadata.gz: 0b9918234c5fc0e4eabd6a59d859fc16a2827c88
4
+ data.tar.gz: e609ed53f8aa25a9590405d924ac27a35f8fb47c
5
5
  SHA512:
6
- metadata.gz: d7740a4dba2164bf6692bf3d54d916552836d4c6fbadcc47d95b260e261ea6c3472526bd8a16577bd93e887a3466e332fda5680a33dad636e67ca4cc767fbe19
7
- data.tar.gz: 95c9f1ad057519a97930dfbf613315d294ae7764af7ca5fa69462b12e96b6420b16550d1c158c34894d97a6e129bce454a54221e315f4c1a6a757a493fb4238e
6
+ metadata.gz: bea5f34a6cd157e0804107ffa1c6fec9ade2a12bebe6506843a56f212bb2a93af37050ed5e5ed7bd359e3a1e76bd8a0a11efc3b9e8261f37093bf962e852df27
7
+ data.tar.gz: 21dd8869bcba744dc42759e70f70db5e653e597eee5b13b1cb258f55e5b8965502ca2a37d5a7582d9d6fae318c6c2d8213232a54bcfe53cc62b7a2ccf8671f71
@@ -7,8 +7,8 @@ rvm:
7
7
  - 2.0.0
8
8
  - 2.1.10
9
9
  - 2.2.8
10
- - 2.3.5
11
- - 2.4.1
10
+ - 2.3.6
11
+ - 2.4.3
12
12
  - ruby-head
13
13
  - jruby-9.1.7.0
14
14
  - jruby-head
@@ -1,5 +1,11 @@
1
1
  # Change log
2
2
 
3
+ ## [v0.3.0] - 2018-01-06
4
+
5
+ ### Changed
6
+ * Update tty-prompt dependency
7
+ * Change gemspec to require ruby >= 2.0.0
8
+
3
9
  ## [v0.2.1] - 2017-09-18
4
10
 
5
11
  ### Changed
@@ -35,6 +41,7 @@
35
41
 
36
42
  * Initial implementation and release
37
43
 
44
+ [v0.3.0]: https://github.com/piotrmurach/tty-editor/compare/v0.2.1...v0.3.0
38
45
  [v0.2.1]: https://github.com/piotrmurach/tty-editor/compare/v0.2.0...v0.2.1
39
46
  [v0.2.0]: https://github.com/piotrmurach/tty-editor/compare/v0.1.2...v0.2.0
40
47
  [v0.1.2]: https://github.com/piotrmurach/tty-editor/compare/v0.1.1...v0.1.2
data/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  [![Gem Version](https://badge.fury.io/rb/tty-editor.svg)][gem]
4
4
  [![Build Status](https://secure.travis-ci.org/piotrmurach/tty-editor.svg?branch=master)][travis]
5
5
  [![Build status](https://ci.appveyor.com/api/projects/status/yw4guy16meq5wkee?svg=true)][appveyor]
6
- [![Code Climate](https://codeclimate.com/github/piotrmurach/tty-editor/badges/gpa.svg)][codeclimate]
6
+ [![Maintainability](https://api.codeclimate.com/v1/badges/0afb9e75eef4ae4615c6/maintainability)][codeclimate]
7
7
  [![Coverage Status](https://coveralls.io/repos/github/piotrmurach/tty-editor/badge.svg)][coverage]
8
8
  [![Inline docs](http://inch-ci.org/github/piotrmurach/tty-editor.svg?branch=master)][inchpages]
9
9
 
@@ -11,7 +11,7 @@
11
11
  [gem]: http://badge.fury.io/rb/tty-editor
12
12
  [travis]: http://travis-ci.org/piotrmurach/tty-editor
13
13
  [appveyor]: https://ci.appveyor.com/project/piotrmurach/tty-editor
14
- [codeclimate]: https://codeclimate.com/github/piotrmurach/tty-editor
14
+ [codeclimate]:https://codeclimate.com/github/piotrmurach/tty-editor/maintainability
15
15
  [coverage]: https://coveralls.io/github/piotrmurach/tty-editor
16
16
  [inchpages]: http://inch-ci.org/github/piotrmurach/tty-editor
17
17
 
@@ -117,4 +117,4 @@ The gem is available as open source under the terms of the [MIT License](http://
117
117
 
118
118
  ## Copyright
119
119
 
120
- Copyright (c) 2017 Piotr Murach. See LICENSE for further details.
120
+ Copyright (c) 2017-2018 Piotr Murach. See LICENSE for further details.
@@ -1,7 +1,5 @@
1
- # encoding: utf-8
2
- #
3
1
  module TTY
4
2
  class Editor
5
- VERSION = "0.2.1"
3
+ VERSION = '0.3.0'.freeze
6
4
  end # Editor
7
5
  end # TTY
@@ -19,7 +19,9 @@ Gem::Specification.new do |spec|
19
19
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
20
  spec.require_paths = ["lib"]
21
21
 
22
- spec.add_dependency 'tty-prompt', '~> 0.13.2'
22
+ spec.required_ruby_version = '>= 2.0.0'
23
+
24
+ spec.add_dependency 'tty-prompt', '~> 0.14.0'
23
25
  spec.add_dependency 'tty-which', '~> 0.3.0'
24
26
 
25
27
  spec.add_development_dependency 'bundler', '>= 1.5.0', '< 2.0'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tty-editor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Piotr Murach
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-09-18 00:00:00.000000000 Z
11
+ date: 2018-01-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tty-prompt
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 0.13.2
19
+ version: 0.14.0
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.13.2
26
+ version: 0.14.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: tty-which
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -129,7 +129,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
129
129
  requirements:
130
130
  - - ">="
131
131
  - !ruby/object:Gem::Version
132
- version: '0'
132
+ version: 2.0.0
133
133
  required_rubygems_version: !ruby/object:Gem::Requirement
134
134
  requirements:
135
135
  - - ">="