geordi 4.2.1 → 5.0.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 +4 -4
- data/.github/workflows/test.yml +47 -0
- data/.ruby-version +1 -1
- data/CHANGELOG.md +6 -0
- data/Gemfile.lock +20 -20
- data/README.md +3 -1
- data/geordi.gemspec +1 -1
- data/lib/geordi/commands/commit.rb +0 -4
- data/lib/geordi/version.rb +1 -1
- metadata +5 -5
- data/.travis.yml +0 -28
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 785901e0e49997506cc80f2df64338acc50a9605b42816cce92f56c5dba834b7
|
|
4
|
+
data.tar.gz: 9ec7abce9fd67cdff30584c236ba4454c3cbfe276091b277ffbec95221da9e04
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d8fd6738e768cd5e0ae9b9ccfc0c3bdb781e00abf000c596d408fd62b408f6b46069447d4f8acb98d02b4e2b8ed04faec72af700f18f0d7b8364e42a5dce6ac9
|
|
7
|
+
data.tar.gz: 78ec1bae91f5b3b8ca9fa7dc696021ae78d820250ee62596647283388070e5731b780c4f166f6ecaf4471051c11f340b7d33a8d36ae3c902855fa92c1a8a5f48
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
name: Tests
|
|
2
|
+
on:
|
|
3
|
+
push:
|
|
4
|
+
branches:
|
|
5
|
+
- master
|
|
6
|
+
pull_request:
|
|
7
|
+
branches:
|
|
8
|
+
- master
|
|
9
|
+
jobs:
|
|
10
|
+
test:
|
|
11
|
+
runs-on: ubuntu-18.04
|
|
12
|
+
strategy:
|
|
13
|
+
fail-fast: false
|
|
14
|
+
matrix:
|
|
15
|
+
include:
|
|
16
|
+
- ruby: 2.2.10
|
|
17
|
+
gemfile: Gemfile
|
|
18
|
+
- ruby: 2.3.8
|
|
19
|
+
gemfile: Gemfile
|
|
20
|
+
- ruby: 2.4.10
|
|
21
|
+
gemfile: Gemfile
|
|
22
|
+
- ruby: 2.5.8
|
|
23
|
+
gemfile: Gemfile
|
|
24
|
+
- ruby: 2.6.6
|
|
25
|
+
gemfile: Gemfile
|
|
26
|
+
- ruby: 2.7.2
|
|
27
|
+
gemfile: Gemfile
|
|
28
|
+
env:
|
|
29
|
+
BUNDLE_GEMFILE: "${{ matrix.gemfile }}"
|
|
30
|
+
steps:
|
|
31
|
+
- uses: actions/checkout@v2
|
|
32
|
+
- name: Install ruby
|
|
33
|
+
uses: ruby/setup-ruby@v1
|
|
34
|
+
with:
|
|
35
|
+
ruby-version: "${{ matrix.ruby }}"
|
|
36
|
+
- name: Install vncserver
|
|
37
|
+
run: |
|
|
38
|
+
sudo apt-get install -y vnc4server
|
|
39
|
+
# Fake required password for vncserver
|
|
40
|
+
mkdir ~/.vnc && touch ~/.vnc/passwd && chmod 700 ~/.vnc/passwd
|
|
41
|
+
- name: Bundle
|
|
42
|
+
run: |
|
|
43
|
+
gem install bundler:1.17.3
|
|
44
|
+
bundle install --no-deployment
|
|
45
|
+
- name: Run tests
|
|
46
|
+
run: bundle exec rake
|
|
47
|
+
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.5
|
|
1
|
+
2.5.8
|
data/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,12 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
|
|
|
10
10
|
### Breaking changes
|
|
11
11
|
|
|
12
12
|
|
|
13
|
+
## 5.0.0 2020-11-25
|
|
14
|
+
|
|
15
|
+
### Breaking changes
|
|
16
|
+
* Remove support for Ruby 2.0 and 2.1
|
|
17
|
+
|
|
18
|
+
|
|
13
19
|
## 4.2.0 2020-10-02
|
|
14
20
|
|
|
15
21
|
### Compatible changes
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
geordi (
|
|
4
|
+
geordi (5.0.0)
|
|
5
5
|
thor (~> 1)
|
|
6
6
|
|
|
7
7
|
GEM
|
|
@@ -28,21 +28,21 @@ GEM
|
|
|
28
28
|
coercible (1.0.0)
|
|
29
29
|
descendants_tracker (~> 0.0.1)
|
|
30
30
|
contracts (0.16.0)
|
|
31
|
-
cucumber (3.
|
|
31
|
+
cucumber (3.2.0)
|
|
32
32
|
builder (>= 2.1.2)
|
|
33
|
-
cucumber-core (~> 3.
|
|
34
|
-
cucumber-expressions (~>
|
|
33
|
+
cucumber-core (~> 3.2.0)
|
|
34
|
+
cucumber-expressions (~> 6.0.1)
|
|
35
35
|
cucumber-wire (~> 0.0.1)
|
|
36
36
|
diff-lcs (~> 1.3)
|
|
37
|
-
gherkin (~>
|
|
37
|
+
gherkin (~> 5.1.0)
|
|
38
38
|
multi_json (>= 1.7.5, < 2.0)
|
|
39
39
|
multi_test (>= 0.1.2)
|
|
40
|
-
cucumber-core (3.
|
|
40
|
+
cucumber-core (3.2.1)
|
|
41
41
|
backports (>= 3.8.0)
|
|
42
|
-
cucumber-tag_expressions (
|
|
43
|
-
gherkin (
|
|
44
|
-
cucumber-expressions (
|
|
45
|
-
cucumber-tag_expressions (
|
|
42
|
+
cucumber-tag_expressions (~> 1.1.0)
|
|
43
|
+
gherkin (~> 5.0)
|
|
44
|
+
cucumber-expressions (6.0.1)
|
|
45
|
+
cucumber-tag_expressions (1.1.1)
|
|
46
46
|
cucumber-wire (0.0.1)
|
|
47
47
|
declarative (0.0.10)
|
|
48
48
|
declarative-option (0.1.0)
|
|
@@ -50,13 +50,13 @@ GEM
|
|
|
50
50
|
thread_safe (~> 0.3, >= 0.3.1)
|
|
51
51
|
diff-lcs (1.4.4)
|
|
52
52
|
equalizer (0.0.11)
|
|
53
|
-
excon (0.
|
|
53
|
+
excon (0.78.0)
|
|
54
54
|
faraday (0.17.3)
|
|
55
55
|
multipart-post (>= 1.2, < 3)
|
|
56
56
|
faraday_middleware (0.14.0)
|
|
57
57
|
faraday (>= 0.7.4, < 1.0)
|
|
58
58
|
ffi (1.12.2)
|
|
59
|
-
gherkin (
|
|
59
|
+
gherkin (5.1.0)
|
|
60
60
|
highline (2.0.3)
|
|
61
61
|
ice_nine (0.11.2)
|
|
62
62
|
launchy (2.4.3)
|
|
@@ -66,25 +66,25 @@ GEM
|
|
|
66
66
|
multi_json (1.15.0)
|
|
67
67
|
multi_test (0.1.2)
|
|
68
68
|
multipart-post (2.1.1)
|
|
69
|
-
parallel (1.
|
|
70
|
-
parallel_tests (2.
|
|
69
|
+
parallel (1.19.2)
|
|
70
|
+
parallel_tests (2.32.0)
|
|
71
71
|
parallel
|
|
72
72
|
pry (0.13.1)
|
|
73
73
|
coderay (~> 1.1)
|
|
74
74
|
method_source (~> 1.0)
|
|
75
|
-
public_suffix (
|
|
75
|
+
public_suffix (3.1.1)
|
|
76
76
|
rake (12.3.3)
|
|
77
77
|
representable (3.0.4)
|
|
78
78
|
declarative (< 0.1.0)
|
|
79
79
|
declarative-option (< 0.2.0)
|
|
80
80
|
uber (< 0.2.0)
|
|
81
|
-
rspec-expectations (3.
|
|
81
|
+
rspec-expectations (3.10.0)
|
|
82
82
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
83
|
-
rspec-support (~> 3.
|
|
84
|
-
rspec-mocks (3.
|
|
83
|
+
rspec-support (~> 3.10.0)
|
|
84
|
+
rspec-mocks (3.10.0)
|
|
85
85
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
86
|
-
rspec-support (~> 3.
|
|
87
|
-
rspec-support (3.
|
|
86
|
+
rspec-support (~> 3.10.0)
|
|
87
|
+
rspec-support (3.10.0)
|
|
88
88
|
thor (1.0.1)
|
|
89
89
|
thread_safe (0.3.6)
|
|
90
90
|
tracker_api (1.11.0)
|
data/README.md
CHANGED
|
@@ -384,7 +384,9 @@ Stores a timestamped database dump for the given Rails environment in `~/dumps`:
|
|
|
384
384
|
|
|
385
385
|
dumple development
|
|
386
386
|
|
|
387
|
-
|
|
387
|
+
**Options**
|
|
388
|
+
- `-i`: Print disk usage of `~/dumps`
|
|
389
|
+
- `--compress`: After dumping, run gzip to compress the dump in place
|
|
388
390
|
|
|
389
391
|
|
|
390
392
|
launchy_browser
|
data/geordi.gemspec
CHANGED
|
@@ -5,7 +5,7 @@ require 'geordi/version'
|
|
|
5
5
|
Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = 'geordi'
|
|
7
7
|
spec.version = Geordi::VERSION
|
|
8
|
-
spec.required_ruby_version = '>= 2.
|
|
8
|
+
spec.required_ruby_version = '>= 2.2.0'
|
|
9
9
|
spec.authors = ['Henning Koch']
|
|
10
10
|
spec.email = ['henning.koch@makandra.de']
|
|
11
11
|
|
|
@@ -9,10 +9,6 @@ stored in `~/.config/geordi/global.yml`.
|
|
|
9
9
|
LONGDESC
|
|
10
10
|
|
|
11
11
|
def commit(*git_args)
|
|
12
|
-
raise <<-TEXT if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.1')
|
|
13
|
-
Unsupported Ruby Version #{RUBY_VERSION}. `geordi commit` requires Ruby 2.1+.
|
|
14
|
-
TEXT
|
|
15
|
-
|
|
16
12
|
require 'geordi/gitpt'
|
|
17
13
|
Gitpt.new.run(git_args)
|
|
18
14
|
end
|
data/lib/geordi/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: geordi
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 5.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Henning Koch
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-11-
|
|
11
|
+
date: 2020-11-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|
|
@@ -36,9 +36,9 @@ executables:
|
|
|
36
36
|
extensions: []
|
|
37
37
|
extra_rdoc_files: []
|
|
38
38
|
files:
|
|
39
|
+
- ".github/workflows/test.yml"
|
|
39
40
|
- ".gitignore"
|
|
40
41
|
- ".ruby-version"
|
|
41
|
-
- ".travis.yml"
|
|
42
42
|
- CHANGELOG.md
|
|
43
43
|
- Gemfile
|
|
44
44
|
- Gemfile.lock
|
|
@@ -111,14 +111,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
111
111
|
requirements:
|
|
112
112
|
- - ">="
|
|
113
113
|
- !ruby/object:Gem::Version
|
|
114
|
-
version: 2.
|
|
114
|
+
version: 2.2.0
|
|
115
115
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
116
116
|
requirements:
|
|
117
117
|
- - ">="
|
|
118
118
|
- !ruby/object:Gem::Version
|
|
119
119
|
version: '0'
|
|
120
120
|
requirements: []
|
|
121
|
-
rubygems_version: 3.
|
|
121
|
+
rubygems_version: 3.0.8
|
|
122
122
|
signing_key:
|
|
123
123
|
specification_version: 4
|
|
124
124
|
summary: Collection of command line tools we use in our daily work with Ruby, Rails
|
data/.travis.yml
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
language: ruby
|
|
2
|
-
|
|
3
|
-
rvm:
|
|
4
|
-
- '2.0.0'
|
|
5
|
-
- '2.1.10'
|
|
6
|
-
- '2.2.10'
|
|
7
|
-
- '2.3.8'
|
|
8
|
-
- '2.4.10'
|
|
9
|
-
- '2.5.8'
|
|
10
|
-
- '2.6.6'
|
|
11
|
-
- '2.7.1'
|
|
12
|
-
|
|
13
|
-
gemfile:
|
|
14
|
-
- 'Gemfile'
|
|
15
|
-
|
|
16
|
-
dist: trusty
|
|
17
|
-
|
|
18
|
-
before_install:
|
|
19
|
-
- sudo apt-get install -y vnc4server
|
|
20
|
-
# Fake required password for vncserver
|
|
21
|
-
- mkdir ~/.vnc && touch ~/.vnc/passwd && chmod 700 ~/.vnc/passwd
|
|
22
|
-
install:
|
|
23
|
-
- gem install bundler:1.17.3
|
|
24
|
-
# Replace default Travis CI bundler script with a version that doesn't
|
|
25
|
-
# explode when lockfile doesn't match recently bumped version
|
|
26
|
-
- bundle install --no-deployment --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}
|
|
27
|
-
|
|
28
|
-
script: bundle exec rake
|