geordi 6.1.0 → 7.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 +8 -16
- data/.ruby-version +1 -1
- data/CHANGELOG.md +7 -0
- data/Gemfile +3 -1
- data/Gemfile.lock +62 -23
- data/geordi.gemspec +4 -4
- data/lib/geordi/capistrano_config.rb +4 -4
- data/lib/geordi/commands/deploy.rb +4 -4
- data/lib/geordi/db_cleaner.rb +13 -13
- data/lib/geordi/docker.rb +2 -2
- data/lib/geordi/gitpt.rb +3 -3
- data/lib/geordi/settings.rb +1 -1
- data/lib/geordi/util.rb +0 -6
- data/lib/geordi/version.rb +1 -1
- metadata +5 -19
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c6ae1c9d784901988ec50b26da29a634e3105e5b2210803d55e02ecc9b219d79
|
|
4
|
+
data.tar.gz: 3c7294df5febf88bd97ddb2da25d6d0815d1fffb4ad9f4adfa59b1f96de53f09
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 495984bebb832bf7a3ac9c5539b591c8e89641cc382e4e10089b5c62fe97b3440d0be1c4ac6f27c6f7c04b571a6a662899a30f660855084a9c8ef640094f51da
|
|
7
|
+
data.tar.gz: '0821bd104debdc847d1699d9f5b80c3b553110d0027d632d2acf6a2a739d20005372de6788aeff225d7616c8d0200c9fc1fe4e5ff7f4f177e5bf3256f1084df0'
|
data/.github/workflows/test.yml
CHANGED
|
@@ -8,25 +8,17 @@ on:
|
|
|
8
8
|
- master
|
|
9
9
|
jobs:
|
|
10
10
|
test:
|
|
11
|
-
runs-on: ubuntu-
|
|
11
|
+
runs-on: ubuntu-20.04
|
|
12
12
|
strategy:
|
|
13
13
|
fail-fast: false
|
|
14
14
|
matrix:
|
|
15
15
|
include:
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
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
|
-
- ruby: 3.0.0
|
|
29
|
-
gemfile: Gemfile
|
|
16
|
+
- ruby: 2.5.7
|
|
17
|
+
gemfile: Gemfile
|
|
18
|
+
- ruby: 2.7.4
|
|
19
|
+
gemfile: Gemfile
|
|
20
|
+
- ruby: 3.0.2
|
|
21
|
+
gemfile: Gemfile
|
|
30
22
|
env:
|
|
31
23
|
BUNDLE_GEMFILE: "${{ matrix.gemfile }}"
|
|
32
24
|
steps:
|
|
@@ -37,7 +29,7 @@ jobs:
|
|
|
37
29
|
ruby-version: "${{ matrix.ruby }}"
|
|
38
30
|
- name: Bundle
|
|
39
31
|
run: |
|
|
40
|
-
gem install bundler:
|
|
32
|
+
gem install bundler:2.2.26
|
|
41
33
|
bundle install --no-deployment
|
|
42
34
|
- name: Install VNC viewer
|
|
43
35
|
run: |
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.
|
|
1
|
+
2.5.7
|
data/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,13 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
|
|
|
9
9
|
### Breaking changes
|
|
10
10
|
|
|
11
11
|
|
|
12
|
+
## 7.0.0 2021-08-25
|
|
13
|
+
|
|
14
|
+
### Breaking changes
|
|
15
|
+
|
|
16
|
+
* Drop support for Ruby < 2.5.0
|
|
17
|
+
|
|
18
|
+
|
|
12
19
|
## 6.1.0 2021-07-15
|
|
13
20
|
|
|
14
21
|
### Compatible changes
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
geordi (
|
|
5
|
-
thor (~> 1)
|
|
4
|
+
geordi (7.0.0)
|
|
6
5
|
|
|
7
6
|
GEM
|
|
8
7
|
remote: http://rubygems.org/
|
|
9
8
|
specs:
|
|
9
|
+
activesupport (6.1.4.1)
|
|
10
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
11
|
+
i18n (>= 1.6, < 2)
|
|
12
|
+
minitest (>= 5.1)
|
|
13
|
+
tzinfo (~> 2.0)
|
|
14
|
+
zeitwerk (~> 2.3)
|
|
10
15
|
addressable (2.7.0)
|
|
11
16
|
public_suffix (>= 2.0.2, < 5.0)
|
|
12
17
|
aruba (0.14.14)
|
|
@@ -20,30 +25,42 @@ GEM
|
|
|
20
25
|
descendants_tracker (~> 0.0.4)
|
|
21
26
|
ice_nine (~> 0.11.0)
|
|
22
27
|
thread_safe (~> 0.3, >= 0.3.1)
|
|
23
|
-
backports (3.18.2)
|
|
24
28
|
builder (3.2.4)
|
|
25
|
-
byebug (
|
|
29
|
+
byebug (11.1.3)
|
|
26
30
|
childprocess (1.0.1)
|
|
27
31
|
rake (< 13.0)
|
|
32
|
+
coderay (1.1.3)
|
|
28
33
|
coercible (1.0.0)
|
|
29
34
|
descendants_tracker (~> 0.0.1)
|
|
35
|
+
concurrent-ruby (1.1.9)
|
|
30
36
|
contracts (0.16.0)
|
|
31
|
-
cucumber (
|
|
32
|
-
builder (>= 2.
|
|
33
|
-
cucumber-core (~>
|
|
34
|
-
cucumber-expressions (~>
|
|
35
|
-
cucumber-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
gherkin (~>
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
cucumber-
|
|
37
|
+
cucumber (4.0.0)
|
|
38
|
+
builder (~> 3.2, >= 3.2.3)
|
|
39
|
+
cucumber-core (~> 7.0, >= 7.0.0)
|
|
40
|
+
cucumber-cucumber-expressions (~> 10.1, >= 10.1.0)
|
|
41
|
+
cucumber-gherkin (~> 13.0, >= 13.0.0)
|
|
42
|
+
cucumber-html-formatter (~> 6.0, >= 6.0.1)
|
|
43
|
+
cucumber-messages (~> 12.1, >= 12.1.1)
|
|
44
|
+
cucumber-wire (~> 3.0, >= 3.0.0)
|
|
45
|
+
diff-lcs (~> 1.3, >= 1.3)
|
|
46
|
+
multi_test (~> 0.1, >= 0.1.2)
|
|
47
|
+
sys-uname (~> 1.0, >= 1.0.2)
|
|
48
|
+
cucumber-core (7.0.0)
|
|
49
|
+
cucumber-gherkin (~> 13.0, >= 13.0.0)
|
|
50
|
+
cucumber-messages (~> 12.1, >= 12.1.1)
|
|
51
|
+
cucumber-tag-expressions (~> 2.0, >= 2.0.4)
|
|
52
|
+
cucumber-cucumber-expressions (10.3.0)
|
|
53
|
+
cucumber-gherkin (13.0.0)
|
|
54
|
+
cucumber-messages (~> 12.0, >= 12.0.0)
|
|
55
|
+
cucumber-html-formatter (6.0.3)
|
|
56
|
+
cucumber-messages (~> 12.1, >= 12.1.1)
|
|
57
|
+
cucumber-messages (12.4.0)
|
|
58
|
+
protobuf-cucumber (~> 3.10, >= 3.10.8)
|
|
59
|
+
cucumber-tag-expressions (2.0.4)
|
|
60
|
+
cucumber-wire (3.0.0)
|
|
61
|
+
cucumber-core (~> 7.0, >= 7.0.0)
|
|
62
|
+
cucumber-cucumber-expressions (~> 10.1, >= 10.1.0)
|
|
63
|
+
cucumber-messages (~> 12.1, >= 12.1.1)
|
|
47
64
|
declarative (0.0.10)
|
|
48
65
|
declarative-option (0.1.0)
|
|
49
66
|
descendants_tracker (0.0.4)
|
|
@@ -56,15 +73,19 @@ GEM
|
|
|
56
73
|
faraday_middleware (0.14.0)
|
|
57
74
|
faraday (>= 0.7.4, < 1.0)
|
|
58
75
|
ffi (1.12.2)
|
|
59
|
-
gherkin (5.1.0)
|
|
60
76
|
highline (2.0.3)
|
|
77
|
+
i18n (1.8.10)
|
|
78
|
+
concurrent-ruby (~> 1.0)
|
|
61
79
|
ice_nine (0.11.2)
|
|
62
80
|
launchy (2.4.3)
|
|
63
81
|
addressable (~> 2.3)
|
|
82
|
+
method_source (1.0.0)
|
|
83
|
+
middleware (0.1.0)
|
|
64
84
|
mimemagic (0.3.9)
|
|
65
85
|
nokogiri (~> 1)
|
|
66
86
|
rake
|
|
67
87
|
mini_portile2 (2.4.0)
|
|
88
|
+
minitest (5.14.4)
|
|
68
89
|
multi_json (1.15.0)
|
|
69
90
|
multi_test (0.1.2)
|
|
70
91
|
multipart-post (2.1.1)
|
|
@@ -73,6 +94,17 @@ GEM
|
|
|
73
94
|
parallel (1.19.2)
|
|
74
95
|
parallel_tests (2.32.0)
|
|
75
96
|
parallel
|
|
97
|
+
protobuf-cucumber (3.10.8)
|
|
98
|
+
activesupport (>= 3.2)
|
|
99
|
+
middleware
|
|
100
|
+
thor
|
|
101
|
+
thread_safe
|
|
102
|
+
pry (0.13.1)
|
|
103
|
+
coderay (~> 1.1)
|
|
104
|
+
method_source (~> 1.0)
|
|
105
|
+
pry-byebug (3.9.0)
|
|
106
|
+
byebug (~> 11.0)
|
|
107
|
+
pry (~> 0.13.0)
|
|
76
108
|
public_suffix (3.1.1)
|
|
77
109
|
rake (12.3.3)
|
|
78
110
|
representable (3.0.4)
|
|
@@ -92,6 +124,8 @@ GEM
|
|
|
92
124
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
93
125
|
rspec-support (~> 3.10.0)
|
|
94
126
|
rspec-support (3.10.0)
|
|
127
|
+
sys-uname (1.2.2)
|
|
128
|
+
ffi (~> 1.1)
|
|
95
129
|
thor (1.0.1)
|
|
96
130
|
thread_safe (0.3.6)
|
|
97
131
|
tracker_api (1.11.0)
|
|
@@ -104,26 +138,31 @@ GEM
|
|
|
104
138
|
multi_json
|
|
105
139
|
representable
|
|
106
140
|
virtus
|
|
141
|
+
tzinfo (2.0.4)
|
|
142
|
+
concurrent-ruby (~> 1.0)
|
|
107
143
|
uber (0.1.0)
|
|
108
144
|
virtus (1.0.5)
|
|
109
145
|
axiom-types (~> 0.1)
|
|
110
146
|
coercible (~> 1.0)
|
|
111
147
|
descendants_tracker (~> 0.0, >= 0.0.3)
|
|
112
148
|
equalizer (~> 0.0, >= 0.0.9)
|
|
149
|
+
zeitwerk (2.4.2)
|
|
113
150
|
|
|
114
151
|
PLATFORMS
|
|
115
152
|
ruby
|
|
116
153
|
|
|
117
154
|
DEPENDENCIES
|
|
118
155
|
aruba (< 1)
|
|
119
|
-
|
|
156
|
+
cucumber (~> 4)
|
|
120
157
|
geordi!
|
|
121
158
|
highline
|
|
122
159
|
launchy
|
|
123
160
|
parallel_tests
|
|
161
|
+
pry-byebug
|
|
124
162
|
rake (< 13)
|
|
125
163
|
rspec
|
|
164
|
+
thor (~> 1)
|
|
126
165
|
tracker_api
|
|
127
166
|
|
|
128
167
|
BUNDLED WITH
|
|
129
|
-
|
|
168
|
+
2.2.26
|
data/geordi.gemspec
CHANGED
|
@@ -5,25 +5,25 @@ 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.3.0'
|
|
9
9
|
spec.authors = ['Henning Koch']
|
|
10
10
|
spec.email = ['henning.koch@makandra.de']
|
|
11
11
|
|
|
12
12
|
spec.summary = 'Collection of command line tools we use in our daily work with Ruby, Rails and Linux at makandra.'
|
|
13
|
-
spec.description =
|
|
13
|
+
spec.description = spec.summary
|
|
14
14
|
spec.homepage = 'https://makandra.com'
|
|
15
15
|
spec.license = 'MIT'
|
|
16
16
|
|
|
17
17
|
# Specify which files should be added to the gem when it is released.
|
|
18
18
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
|
19
19
|
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
|
20
|
-
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(spec|features)/}) }
|
|
20
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
21
21
|
end
|
|
22
22
|
spec.bindir = 'exe'
|
|
23
23
|
spec.executables = spec.files.grep(%r(^exe/)) { |f| File.basename(f) }
|
|
24
24
|
spec.require_paths = ['lib']
|
|
25
25
|
|
|
26
|
-
spec.
|
|
26
|
+
# Development dependencies are defined in the Gemfile (therefore no `spec.add_development_dependency` directives)
|
|
27
27
|
|
|
28
28
|
spec.post_install_message = <<-ATTENTION
|
|
29
29
|
Support for sequential running of integration tests tagged with @solo has been dropped.
|
|
@@ -66,11 +66,11 @@ module Geordi
|
|
|
66
66
|
|
|
67
67
|
until File.exist?(File.join(current, 'Capfile'))
|
|
68
68
|
if current == '/' || current == '/home' || !File.directory?(current)
|
|
69
|
-
raise
|
|
70
|
-
|
|
69
|
+
raise <<~ERROR
|
|
70
|
+
Could not locate Capfile.
|
|
71
71
|
|
|
72
|
-
|
|
73
|
-
|
|
72
|
+
Are you calling me from within a Rails project?
|
|
73
|
+
Maybe Capistrano is not installed in this project.
|
|
74
74
|
ERROR
|
|
75
75
|
else
|
|
76
76
|
current = File.dirname(current)
|
|
@@ -48,11 +48,11 @@ def deploy(target_stage = nil)
|
|
|
48
48
|
target_stage ||= Interaction.prompt 'Deployment stage:', branch_stage_map.fetch(Util.current_branch, 'staging')
|
|
49
49
|
if options.current_branch
|
|
50
50
|
stage_file = "config/deploy/#{target_stage}.rb"
|
|
51
|
-
Util.file_containing?(stage_file, 'DEPLOY_BRANCH') || Interaction.fail(
|
|
52
|
-
To deploy from the current branch, configure #{stage_file} to respect the
|
|
53
|
-
environment variable DEPLOY_BRANCH. Example:
|
|
51
|
+
Util.file_containing?(stage_file, 'DEPLOY_BRANCH') || Interaction.fail(<<~ERROR)
|
|
52
|
+
To deploy from the current branch, configure #{stage_file} to respect the
|
|
53
|
+
environment variable DEPLOY_BRANCH. Example:
|
|
54
54
|
|
|
55
|
-
set :branch, ENV['DEPLOY_BRANCH'] || 'master'
|
|
55
|
+
set :branch, ENV['DEPLOY_BRANCH'] || 'master'
|
|
56
56
|
ERROR
|
|
57
57
|
|
|
58
58
|
source_branch = target_branch = Util.current_branch
|
data/lib/geordi/db_cleaner.rb
CHANGED
|
@@ -30,15 +30,15 @@ module Geordi
|
|
|
30
30
|
end
|
|
31
31
|
all_dbs = list_all_dbs(dbtype)
|
|
32
32
|
tmp = Tempfile.open("geordi_whitelist_#{dbtype}")
|
|
33
|
-
tmp.write
|
|
34
|
-
# Put each whitelisted database on a new line.
|
|
35
|
-
# System databases will never be deleted.
|
|
36
|
-
# When you whitelist foo, foo_development and foo_test\\d* are whitelisted, too.
|
|
37
|
-
# This works even if foo does not exist. Also, you will only see foo in this list.
|
|
38
|
-
#
|
|
39
|
-
# Syntax: keep foo
|
|
40
|
-
# drop bar
|
|
41
|
-
HEREDOC
|
|
33
|
+
tmp.write <<~HEREDOC
|
|
34
|
+
# Put each whitelisted database on a new line.
|
|
35
|
+
# System databases will never be deleted.
|
|
36
|
+
# When you whitelist foo, foo_development and foo_test\\d* are whitelisted, too.
|
|
37
|
+
# This works even if foo does not exist. Also, you will only see foo in this list.
|
|
38
|
+
#
|
|
39
|
+
# Syntax: keep foo
|
|
40
|
+
# drop bar
|
|
41
|
+
HEREDOC
|
|
42
42
|
tmpfile_content = Array.new
|
|
43
43
|
all_dbs.each do |db|
|
|
44
44
|
next if is_whitelisted?(dbtype, db)
|
|
@@ -65,11 +65,11 @@ HEREDOC
|
|
|
65
65
|
tmpfile_content.push(['keep', db_name]) unless db_name.empty?
|
|
66
66
|
end
|
|
67
67
|
if warn_manual_whitelist
|
|
68
|
-
Interaction.warn
|
|
69
|
-
|
|
70
|
-
|
|
68
|
+
Interaction.warn <<~ERROR_MSG
|
|
69
|
+
Your whitelist #{whitelist} seems to have been generated manually.
|
|
70
|
+
In that case, make sure to use only one database name per line and omit the 'keep' prefix."
|
|
71
71
|
|
|
72
|
-
|
|
72
|
+
Launching the editor.
|
|
73
73
|
ERROR_MSG
|
|
74
74
|
end
|
|
75
75
|
tmpfile_content.sort_by! { |k| k[1] }
|
data/lib/geordi/docker.rb
CHANGED
|
@@ -50,8 +50,8 @@ module Geordi
|
|
|
50
50
|
end
|
|
51
51
|
|
|
52
52
|
puts
|
|
53
|
-
puts
|
|
54
|
-
|
|
53
|
+
puts <<~TEXT
|
|
54
|
+
Done. You can view the VNC window with `geordi docker vnc`.
|
|
55
55
|
TEXT
|
|
56
56
|
|
|
57
57
|
Interaction.success 'Happy cuking!'
|
data/lib/geordi/gitpt.rb
CHANGED
|
@@ -16,8 +16,8 @@ module Geordi
|
|
|
16
16
|
end
|
|
17
17
|
|
|
18
18
|
def run_commit(git_args)
|
|
19
|
-
Interaction.warn
|
|
20
|
-
No staged changes. Will create an empty commit.
|
|
19
|
+
Interaction.warn <<~WARNING unless Util.staged_changes?
|
|
20
|
+
No staged changes. Will create an empty commit.
|
|
21
21
|
WARNING
|
|
22
22
|
|
|
23
23
|
story = choose_story
|
|
@@ -173,7 +173,7 @@ No staged changes. Will create an empty commit.
|
|
|
173
173
|
stdout_str.strip.split(' ').map(&:chars).map(&:first).join.downcase
|
|
174
174
|
end
|
|
175
175
|
|
|
176
|
-
git_user_initials = Interaction.prompt 'Enter your
|
|
176
|
+
git_user_initials = Interaction.prompt 'Enter your initials:', git_user_initials
|
|
177
177
|
|
|
178
178
|
if git_user_initials.nil?
|
|
179
179
|
Interaction.fail('Could not determine the git user\'s initials.')
|
data/lib/geordi/settings.rb
CHANGED
|
@@ -138,7 +138,7 @@ module Geordi
|
|
|
138
138
|
project_ids = File.read('.pt_project_id')
|
|
139
139
|
puts # Make sure to start on a new line (e.g. when invoked after a #print)
|
|
140
140
|
Geordi::Interaction.warn "The usage of the .pt_project_id file is deprecated."
|
|
141
|
-
Geordi::Interaction.note
|
|
141
|
+
Geordi::Interaction.note(<<~INSTRUCTIONS)
|
|
142
142
|
Please remove this file from your project and add or extend the .geordi.yml file with the following content:
|
|
143
143
|
pivotal_tracker_project_ids: #{project_ids}
|
|
144
144
|
INSTRUCTIONS
|
data/lib/geordi/util.rb
CHANGED
|
@@ -182,12 +182,6 @@ module Geordi
|
|
|
182
182
|
!!ENV['GEORDI_TESTING']
|
|
183
183
|
end
|
|
184
184
|
|
|
185
|
-
def strip_heredoc(string)
|
|
186
|
-
leading_whitespace = (string.match(/\A( +)[^ ]+/) || [])[1]
|
|
187
|
-
string.gsub! /^#{leading_whitespace}/, '' if leading_whitespace
|
|
188
|
-
string
|
|
189
|
-
end
|
|
190
|
-
|
|
191
185
|
end
|
|
192
186
|
end
|
|
193
187
|
end
|
data/lib/geordi/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,29 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: geordi
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 7.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: 2021-
|
|
12
|
-
dependencies:
|
|
13
|
-
- !ruby/object:Gem::Dependency
|
|
14
|
-
name: thor
|
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
|
16
|
-
requirements:
|
|
17
|
-
- - "~>"
|
|
18
|
-
- !ruby/object:Gem::Version
|
|
19
|
-
version: '1'
|
|
20
|
-
type: :runtime
|
|
21
|
-
prerelease: false
|
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
-
requirements:
|
|
24
|
-
- - "~>"
|
|
25
|
-
- !ruby/object:Gem::Version
|
|
26
|
-
version: '1'
|
|
11
|
+
date: 2021-08-25 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
27
13
|
description: Collection of command line tools we use in our daily work with Ruby,
|
|
28
14
|
Rails and Linux at makandra.
|
|
29
15
|
email:
|
|
@@ -110,14 +96,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
110
96
|
requirements:
|
|
111
97
|
- - ">="
|
|
112
98
|
- !ruby/object:Gem::Version
|
|
113
|
-
version: 2.
|
|
99
|
+
version: 2.3.0
|
|
114
100
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
115
101
|
requirements:
|
|
116
102
|
- - ">="
|
|
117
103
|
- !ruby/object:Gem::Version
|
|
118
104
|
version: '0'
|
|
119
105
|
requirements: []
|
|
120
|
-
rubygems_version: 3.
|
|
106
|
+
rubygems_version: 3.2.26
|
|
121
107
|
signing_key:
|
|
122
108
|
specification_version: 4
|
|
123
109
|
summary: Collection of command line tools we use in our daily work with Ruby, Rails
|