geordi 4.0.0 → 4.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a5ef220369795b8dc7615505cffc05a91776cf91a46580916ab30abd7902262a
4
- data.tar.gz: e030a912bd16d9e805081cf4ce3669260223a0198ea1f1d0dfaf8e7c10b75b7f
3
+ metadata.gz: e713daa0ffee8f9a861ebdc77dcfb4bffe177f2342b05ae7fc442494d4384c18
4
+ data.tar.gz: 36b09dd4952b71a1f3851b6cbcb9e5f823d575a707b6ebae9bdd4e459d366a68
5
5
  SHA512:
6
- metadata.gz: 49df1e803163f9d602f663d29da0f0036214a5ccb571727cbd02b9951094e4aa72fa7bf2654ceae3b7af47ace8286e6c26b94933277377a1ef5b5f21d7fe6ff5
7
- data.tar.gz: 6cf4fafbb0e8f8c311279d61f3ea090ee9bb44589bb9f8566ab0796b26514862d52e89f93e9f5686aa63c8350951fb147c7a967ed2270ff29bb77cb07277da2d
6
+ metadata.gz: c1f9c002b9035c57ccef219eae0a1f51b64b22ef74ed37ec2a18257b6c230ab3dd1d2f457f93a60df0bf409b5c4ab69b02af9bf2f43ea8c9ba0fe44799616b57
7
+ data.tar.gz: 6c74ac5333a1a44b3c5ecd8522829e3984b7e1c2fdd2c37d29c99fe5e450a95945a6d8de6c8103ab5b3d58f09ef83f137f2b95bc8c3ea68163cf8c2fba0451f8
@@ -9,6 +9,16 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
9
9
  ### Breaking changes
10
10
 
11
11
 
12
+ ## 4.0.1 2020-08-11
13
+ ### Compatible changes
14
+
15
+ * Fix `geordi migrate` command, that fails with:
16
+
17
+ ```
18
+ Don't know how to build task 'db:migrate parallel:prepare'
19
+ ```
20
+
21
+
12
22
  ## 4.0.0 2020-07-30
13
23
 
14
24
  ### Compatible changes
@@ -18,6 +28,7 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
18
28
  ### Breaking changes
19
29
  - Removed deprecated executables
20
30
  - Removed `eurest` command
31
+ - Respect binstubs if available, otherwise fallback to geordi's previous behaviour. Note that this might cause failures, when your binstubs are not working. Please have a look at #109 for how a failure might look like and how you can fix it.
21
32
 
22
33
 
23
34
  ## 3.2.0 2020-07-15
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- geordi (4.0.0)
4
+ geordi (4.0.1)
5
5
  thor (~> 1)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -382,10 +382,18 @@ browser, as opposed to opening it within the VNC window.
382
382
  Contributing
383
383
  ============
384
384
 
385
- * Run the tests for the oldest supported ruby version with `bundle exec rake`. Ensure that all other ruby versions in the `travis.yml` pass as well after pushing your feature branch and triggering the travis build.
386
- * Update this `README`. The whole `geordi` section is auto-generated from command
387
- descriptions when running `rake readme`.
388
- * Document your changes in the `CHANGELOG.md` file.
385
+ When making changes to Geordi, please make sure your code is tested. Not all,
386
+ but most features of Geordi can be tested. See other tests for inspiration.
387
+
388
+ Once you have completed your modifications, please update CHANGELOG and README
389
+ as needed. Use `rake readme` to regenerate the Geordi section of the README from
390
+ the command documentations.
391
+
392
+ Make sure tests are green in the default Ruby *plus* in the oldest Ruby > 1.8
393
+ that you have installed on your system (1.8.7 support has been dropped).
394
+
395
+ Before releasing your changes, wait for the Travis results to see that tests
396
+ passed in all Ruby versions.
389
397
 
390
398
 
391
399
  Adding a new command
@@ -17,7 +17,7 @@ def migrate
17
17
  Interaction.note 'Development and parallel test databases'
18
18
  puts
19
19
 
20
- Util.system! Util.binstub('rake'), 'db:migrate parallel:prepare'
20
+ Util.system! Util.binstub('rake'), 'db:migrate', 'parallel:prepare'
21
21
  else
22
22
  invoke_cmd 'rake', 'db:migrate'
23
23
  end
@@ -1,3 +1,3 @@
1
1
  module Geordi
2
- VERSION = '4.0.0'.freeze
2
+ VERSION = '4.0.1'.freeze
3
3
  end
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.0.0
4
+ version: 4.0.1
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-07-30 00:00:00.000000000 Z
11
+ date: 2020-08-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -118,7 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
118
118
  - !ruby/object:Gem::Version
119
119
  version: '0'
120
120
  requirements: []
121
- rubygems_version: 3.1.4
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