vtk 0.2.0 → 0.2.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: b7583033a5831dfb0161f71d5ab8721382be7412148ab1d9c226586b14f79105
4
- data.tar.gz: 3fabac91fa94bbedd1b33234ec76b2f21d9caaa5b7ec1d8f735d0395f7b28870
3
+ metadata.gz: ad9331d2e3269bcc2caeb46c9d8101cdca1b9152672c9960b0c223b4a3fa19b3
4
+ data.tar.gz: c8f469ed05d379b64d4e1215b725acb69fd826c71552b6a99efcbe3225a3f2ed
5
5
  SHA512:
6
- metadata.gz: 0f4d8d91956e7e0bfd3bbe01cfee7cd83ffedfd1b163b708f633c5346c27ff4ed41c9674f22c39e17b9b2a14e808443987e99f184c02d3de5a749a033f97c674
7
- data.tar.gz: 0d04131d2c1de00edfd0a09196d7ef15f38651837870b2e1b24bf070deb84144f9845bcd344b34494aac686ba3088e8dd40be6e61fd3dc1f4304a0160274188d
6
+ metadata.gz: 2670fc0a7a779b98c303791497cc0561bf6c1e390f8b6892f994b532b5e2d443131edab7461d232aa2c35f16e9325283b64832b3e4d5e47c84bd6692caabcf1f
7
+ data.tar.gz: a921b512cea519819d14d7e406a781d894658dbeecbc5fbd39a61eb7b9e32ca5a7796440b291a7c2641f990f17027a9907ea12e88b4d0c121ef6e66a8c36acd5
@@ -1,35 +1,13 @@
1
- commit 27fe3ef674a283686b7cff164386ec9d913208ef (HEAD -> start-afresh-with-tty, origin/start-afresh-with-tty)
2
- Author: Lindsey Hattamer <lindsey.hattamer@oddball.io>
3
- Date: Mon Jan 4 11:13:11 2021 -0500
1
+ # Changelog
4
2
 
5
- add docs
3
+ ## [Unreleased](https://github.com/department-of-veterans-affairs/vtk/tree/HEAD)
6
4
 
7
- commit 3a7d97c35ca9f084a0f27d1a2ff522dd8e9b2abc
8
- Author: Eric Boehs <eric@boehs.com>
9
- Date: Mon Jan 4 10:11:38 2021 -0600
5
+ [Full Changelog](https://github.com/department-of-veterans-affairs/vtk/compare/oclif...HEAD)
10
6
 
11
- Looks like rake runs rubocop already
7
+ **Merged pull requests:**
12
8
 
13
- commit 9f7df0e213edaa57420a1bd14501aea6fc4ffd5a
14
- Author: Eric Boehs <eric@boehs.com>
15
- Date: Mon Jan 4 10:10:33 2021 -0600
16
-
17
- GH Actions: Pin Ubuntu to 20.04 (avoids warning)
18
-
19
- commit 3343941e76b506ed00d3fbd1a7ecd163873597fc
20
- Author: Eric Boehs <eric@boehs.com>
21
- Date: Mon Jan 4 10:06:42 2021 -0600
22
-
23
- Add tool-versions and rubocop to GitHub Actions
24
-
25
- commit 99560d5ad44c9889bdd4884104c993aa86749a40
26
- Author: Lindsey Hattamer <lindsey.hattamer@oddball.io>
27
- Date: Mon Jan 4 11:03:58 2021 -0500
28
-
29
- Remove adding to gemfile
30
-
31
- commit b6394523b7eafbde3276a9f990dd7e4179e124e4
32
- Author: Lindsey Hattamer <lindsey.hattamer@oddball.io>
33
- Date: Mon Jan 4 11:02:55 2021 -0500
34
-
35
- Update .github/workflows/main.yml
9
+ - Add additional module subcommands [\#6](https://github.com/department-of-veterans-affairs/vtk/pull/6) ([LindseySaari](https://github.com/LindseySaari))
10
+ - Check for Rails dependency [\#5](https://github.com/department-of-veterans-affairs/vtk/pull/5) ([LindseySaari](https://github.com/LindseySaari))
11
+ - one more crack at fixing the README [\#4](https://github.com/department-of-veterans-affairs/vtk/pull/4) ([thilton-oddball](https://github.com/thilton-oddball))
12
+ - fixing markdown in README … [\#3](https://github.com/department-of-veterans-affairs/vtk/pull/3) ([thilton-oddball](https://github.com/thilton-oddball))
13
+ - Start afresh with tty [\#2](https://github.com/department-of-veterans-affairs/vtk/pull/2) ([LindseySaari](https://github.com/LindseySaari))
data/README.md CHANGED
@@ -32,3 +32,4 @@ This above command runs a custom rails generator. For more information see the [
32
32
  For helpful information about commands and subcommands run the following:
33
33
 
34
34
  $ vtk -h
35
+ $ vtk module -h
@@ -22,7 +22,7 @@ module Vtk
22
22
 
23
23
  private
24
24
 
25
- def create_controller(name)
25
+ def create_model(name)
26
26
  `rails g module_component #{name} model`
27
27
  end
28
28
  end
@@ -22,7 +22,7 @@ module Vtk
22
22
 
23
23
  private
24
24
 
25
- def create_controller(name)
25
+ def create_serializer(name)
26
26
  `rails g module_component #{name} serializer`
27
27
  end
28
28
  end
@@ -22,7 +22,7 @@ module Vtk
22
22
 
23
23
  private
24
24
 
25
- def create_controller(name)
25
+ def create_service(name)
26
26
  `rails g module_component #{name} service`
27
27
  end
28
28
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Vtk
4
- VERSION = '0.2.0'
4
+ VERSION = '0.2.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vtk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Boehs
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: exe
12
12
  cert_chain: []
13
- date: 2021-01-19 00:00:00.000000000 Z
13
+ date: 2021-01-22 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: thor