restartable 1.1.0 → 1.1.1

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
  SHA256:
3
- metadata.gz: a28dc12572eb0bea21b5092610bc37735f80895e6cbf118dcdaf768afbb56b57
4
- data.tar.gz: ab8a55f71bc27b21888d034fc242407358ab42145b644c4b54d7d94fc37da980
3
+ metadata.gz: 5added52f82c0d584209cbee2765a35c995e18d4958f2803fae2f0244bac51ec
4
+ data.tar.gz: 0a09aa43ab3743e8bb5b93e2aacf2dbad45842b41d7526312626cb2bc7999f42
5
5
  SHA512:
6
- metadata.gz: 4847e349cece0182822cc5282c6ad128b71b377d33e576fd12e43bf2dc18d546f946e55bb55e12c07c91612536717eb7844e6fe505310ad6a845cdf783e27874
7
- data.tar.gz: 63c21a956b21f73d45a32067903434656edae876ffb51f35be7d8551aeeb9406196856cb02991fe1ab76df00ff3a2cc865fc2437be410213c4c4bea954be30c0
6
+ metadata.gz: a6922933de54301bf084f107c1f8fe925aeaa9eabc8b74bf928290ae9395c618406723450e9892f5cb4646fedb20e4cc8d0862b1e4b7d20b0465697d9a5dee40
7
+ data.tar.gz: b0b93a3aaee9b1ca5af85a11b7c00c980897eb17f91b2e8e0b8245e8852bc338a58d35141bb3925e72a5156fad01222c6d5c29e0aa3d103422e4b726fb2b7ebb
data/.rubocop.yml CHANGED
@@ -8,7 +8,10 @@ Layout/AccessModifierIndentation:
8
8
  Layout/CaseIndentation:
9
9
  EnforcedStyle: end
10
10
 
11
- Layout/IndentHash:
11
+ Layout/EndAlignment:
12
+ EnforcedStyleAlignWith: variable
13
+
14
+ Layout/IndentFirstHashElement:
12
15
  EnforcedStyle: consistent
13
16
 
14
17
  Layout/IndentHeredoc:
@@ -20,9 +23,6 @@ Layout/SpaceBeforeBlockBraces:
20
23
  Layout/SpaceInsideHashLiteralBraces:
21
24
  EnforcedStyle: no_space
22
25
 
23
- Lint/EndAlignment:
24
- EnforcedStyleAlignWith: variable
25
-
26
26
  Lint/UnneededRequireStatement:
27
27
  Enabled: false
28
28
 
data/.travis.yml CHANGED
@@ -5,19 +5,21 @@ rvm:
5
5
  - '2.1.10'
6
6
  - '2.2.10'
7
7
  - '2.3.8'
8
- - '2.4.5'
9
- - '2.5.3'
8
+ - '2.4.6'
9
+ - '2.5.5'
10
+ - '2.6.3'
10
11
  before_install:
12
+ - gem install rubygems-update || gem install rubygems-update --version '< 3'
11
13
  - gem update --system
12
- - gem update bundler
14
+ - gem install bundler || gem install bundler --version '< 2'
13
15
  script: bundle exec cucumber --expand
14
16
  matrix:
15
17
  include:
16
18
  - os: osx
17
19
  rvm: default
18
20
  - env: RUBOCOP=✓
19
- rvm: '2.5.3'
21
+ rvm: '2.6.3'
20
22
  script: bundle exec rubocop
21
23
  - env: CHECK_RUBIES=✓
22
- rvm: '2.5.3'
24
+ rvm: '2.6.3'
23
25
  script: bundle exec travis_check_rubies
data/Gemfile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  source 'https://rubygems.org'
2
4
 
3
5
  gemspec
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2013-2018 Ivan Kuchin
1
+ Copyright (c) 2013-2019 Ivan Kuchin
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.markdown CHANGED
@@ -9,4 +9,4 @@ Run code, Ctrl-C to restart, two Ctrl-C to stop.
9
9
 
10
10
  ## Copyright
11
11
 
12
- Copyright (c) 2012-2018 Ivan Kuchin. See LICENSE.txt for details.
12
+ Copyright (c) 2012-2019 Ivan Kuchin. See LICENSE.txt for details.
data/bin/restartable CHANGED
@@ -1,5 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
2
  # encoding: UTF-8
3
+ # frozen_string_literal: true
3
4
 
4
5
  require 'optparse'
5
6
  require 'restartable'
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'restartable'
2
4
 
3
5
  def children
data/lib/restartable.rb CHANGED
@@ -1,4 +1,5 @@
1
1
  # encoding: UTF-8
2
+ # frozen_string_literal: true
2
3
 
3
4
  require 'sys/proctable'
4
5
  require 'colored'
data/restartable.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = 'restartable'
5
- s.version = '1.1.0'
5
+ s.version = '1.1.1'
6
6
  s.summary = %q{Run code, Ctrl-C to restart, once more Ctrl-C to stop}
7
7
  s.homepage = "http://github.com/toy/#{s.name}"
8
8
  s.authors = ['Ivan Kuchin']
@@ -10,8 +10,6 @@ Gem::Specification.new do |s|
10
10
 
11
11
  s.required_ruby_version = '>= 2.0'
12
12
 
13
- s.rubyforge_project = s.name
14
-
15
13
  s.metadata = {
16
14
  'bug_tracker_uri' => "https://github.com/toy/#{s.name}/issues",
17
15
  'documentation_uri' => "https://www.rubydoc.info/gems/#{s.name}/#{s.version}",
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: restartable
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ivan Kuchin
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-11-10 00:00:00.000000000 Z
11
+ date: 2019-07-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: colored
@@ -95,7 +95,7 @@ licenses:
95
95
  - MIT
96
96
  metadata:
97
97
  bug_tracker_uri: https://github.com/toy/restartable/issues
98
- documentation_uri: https://www.rubydoc.info/gems/restartable/1.1.0
98
+ documentation_uri: https://www.rubydoc.info/gems/restartable/1.1.1
99
99
  source_code_uri: https://github.com/toy/restartable
100
100
  post_install_message:
101
101
  rdoc_options: []
@@ -112,8 +112,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
112
112
  - !ruby/object:Gem::Version
113
113
  version: '0'
114
114
  requirements: []
115
- rubyforge_project: restartable
116
- rubygems_version: 2.7.8
115
+ rubygems_version: 3.0.3
117
116
  signing_key:
118
117
  specification_version: 4
119
118
  summary: Run code, Ctrl-C to restart, once more Ctrl-C to stop