tty-file 0.4.0 → 0.5.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 23702ac1a40d811c8c23a524265585b0f6fecb26
4
- data.tar.gz: fdc10c2af852b2c6d935d81439e90c54eaa2550b
3
+ metadata.gz: 391c8a79917ab4059cf5e97f8ef9ab897f074e26
4
+ data.tar.gz: 9763444093d08c160b29ecb8aae0a0af01b0395e
5
5
  SHA512:
6
- metadata.gz: 805acf272babab1d6dd610e500502573a2d85ab0c1ed738cde3974fe03f4134b5a447314c8f44ed7da2f8ed26a88f0060ea6547bae8f3c40a177a9ea99ab0639
7
- data.tar.gz: 59f161b5ba098f482a2de30a1cbbda0dd42bf63509f0d7118e37c36af0e94f31a0c73cefb8a0854213259126c4d5df9e903c54f7e94aeb91d8399acd3fdcd907
6
+ metadata.gz: 8409f8c8fa4f5eb1ec0ac20f96bc6f807599b09ea654c0ddcf389fad464bc7a64d7a512afa377e935e3919a1eb078a3013335934a95b059c780ed2543bb77c6e
7
+ data.tar.gz: 5915f45e25b27567db2bc970374adf9283a09e91bd6382f16aabed0c81ede0627e5c475d3edd22e2a287602ab28a3385602bae6e10056b50e526536ee714ce3d
@@ -6,9 +6,9 @@ script: "bundle update && bundle exec rake ci"
6
6
  rvm:
7
7
  - 2.0.0
8
8
  - 2.1.10
9
- - 2.2.5
10
- - 2.3.1
11
- - 2.4.1
9
+ - 2.2.8
10
+ - 2.3.6
11
+ - 2.4.3
12
12
  - ruby-head
13
13
  - jruby-9.1.1.0
14
14
  env:
@@ -1,5 +1,11 @@
1
1
  # Change log
2
2
 
3
+ ## [v0.5.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.4.0] - 2017-09-16
4
10
 
5
11
  ### Added
@@ -45,6 +51,7 @@
45
51
 
46
52
  * Initial implementation and release
47
53
 
54
+ [v0.5.0]: https://github.com/piotrmurach/tty-file/compare/v0.4.0...v0.5.0
48
55
  [v0.4.0]: https://github.com/piotrmurach/tty-file/compare/v0.3.0...v0.4.0
49
56
  [v0.3.0]: https://github.com/piotrmurach/tty-file/compare/v0.2.1...v0.3.0
50
57
  [v0.2.1]: https://github.com/piotrmurach/tty-file/compare/v0.2.0...v0.2.1
data/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  [![Gem Version](https://badge.fury.io/rb/tty-file.svg)][gem]
4
4
  [![Build Status](https://secure.travis-ci.org/piotrmurach/tty-file.svg?branch=master)][travis]
5
5
  [![Build status](https://ci.appveyor.com/api/projects/status/og69rn550s4mt1q3?svg=true)][appveyor]
6
- [![Code Climate](https://codeclimate.com/github/piotrmurach/tty-file/badges/gpa.svg)][codeclimate]
6
+ [![Maintainability](https://api.codeclimate.com/v1/badges/9ce2d164ea4835901ccd/maintainability)][codeclimate]
7
7
  [![Coverage Status](https://coveralls.io/repos/github/piotrmurach/tty-file/badge.svg)][coverage]
8
8
  [![Inline docs](http://inch-ci.org/github/piotrmurach/tty-file.svg?branch=master)][inchpages]
9
9
 
@@ -11,7 +11,7 @@
11
11
  [gem]: http://badge.fury.io/rb/tty-file
12
12
  [travis]: http://travis-ci.org/piotrmurach/tty-file
13
13
  [appveyor]: https://ci.appveyor.com/project/piotrmurach/tty-file
14
- [codeclimate]: https://codeclimate.com/github/piotrmurach/tty-file
14
+ [codeclimate]: https://codeclimate.com/github/piotrmurach/tty-file/maintainability
15
15
  [coverage]: https://coveralls.io/github/piotrmurach/tty-file
16
16
  [inchpages]: http://inch-ci.org/github/piotrmurach/tty-file
17
17
 
@@ -442,4 +442,4 @@ The gem is available as open source under the terms of the [MIT License](http://
442
442
 
443
443
  ## Copyright
444
444
 
445
- Copyright (c) 2016-2017 Piotr Murach. See LICENSE for further details.
445
+ Copyright (c) 2016-2018 Piotr Murach. See LICENSE for further details.
@@ -2,6 +2,6 @@
2
2
 
3
3
  module TTY
4
4
  module File
5
- VERSION = "0.4.0"
5
+ VERSION = '0.5.0'.freeze
6
6
  end # File
7
7
  end # TTY
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
9
9
  spec.authors = ["Piotr Murach"]
10
10
  spec.email = [""]
11
11
 
12
- spec.summary = %q{File manipulation utility methods}
13
- spec.description = %q{File manipulation utility methods}
12
+ spec.summary = %q{File manipulation utility methods.}
13
+ spec.description = %q{File manipulation utility methods.}
14
14
  spec.homepage = "https://piotrmurach.github.io/tty"
15
15
  spec.license = "MIT"
16
16
 
@@ -19,8 +19,10 @@ 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 'pastel', '~> 0.7.1'
23
- spec.add_dependency 'tty-prompt', '~> 0.13.2'
22
+ spec.required_ruby_version = '>= 2.0.0'
23
+
24
+ spec.add_dependency 'pastel', '~> 0.7.2'
25
+ spec.add_dependency 'tty-prompt', '~> 0.14.0'
24
26
  spec.add_dependency 'diff-lcs', '~> 1.3.0'
25
27
 
26
28
  spec.add_development_dependency 'bundler', '~> 1.5'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tty-file
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.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-16 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: pastel
@@ -16,28 +16,28 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 0.7.1
19
+ version: 0.7.2
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.1
26
+ version: 0.7.2
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: tty-prompt
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 0.13.2
33
+ version: 0.14.0
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.13.2
40
+ version: 0.14.0
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: diff-lcs
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -94,7 +94,7 @@ dependencies:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
96
  version: '3.0'
97
- description: File manipulation utility methods
97
+ description: File manipulation utility methods.
98
98
  email:
99
99
  - ''
100
100
  executables: []
@@ -137,7 +137,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
137
137
  requirements:
138
138
  - - ">="
139
139
  - !ruby/object:Gem::Version
140
- version: '0'
140
+ version: 2.0.0
141
141
  required_rubygems_version: !ruby/object:Gem::Requirement
142
142
  requirements:
143
143
  - - ">="
@@ -148,5 +148,5 @@ rubyforge_project:
148
148
  rubygems_version: 2.5.1
149
149
  signing_key:
150
150
  specification_version: 4
151
- summary: File manipulation utility methods
151
+ summary: File manipulation utility methods.
152
152
  test_files: []