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 +4 -4
- data/.travis.yml +2 -2
- data/CHANGELOG.md +7 -0
- data/README.md +3 -3
- data/lib/tty/editor/version.rb +1 -3
- data/tty-editor.gemspec +3 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0b9918234c5fc0e4eabd6a59d859fc16a2827c88
|
4
|
+
data.tar.gz: e609ed53f8aa25a9590405d924ac27a35f8fb47c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bea5f34a6cd157e0804107ffa1c6fec9ade2a12bebe6506843a56f212bb2a93af37050ed5e5ed7bd359e3a1e76bd8a0a11efc3b9e8261f37093bf962e852df27
|
7
|
+
data.tar.gz: 21dd8869bcba744dc42759e70f70db5e653e597eee5b13b1cb258f55e5b8965502ca2a37d5a7582d9d6fae318c6c2d8213232a54bcfe53cc62b7a2ccf8671f71
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -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
|
-
[![
|
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]:
|
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.
|
data/lib/tty/editor/version.rb
CHANGED
data/tty-editor.gemspec
CHANGED
@@ -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.
|
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.
|
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:
|
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.
|
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.
|
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:
|
132
|
+
version: 2.0.0
|
133
133
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
134
134
|
requirements:
|
135
135
|
- - ">="
|