vtk 0.2.2 → 0.2.3

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: 83a1b06084a090c2a973975063ae3584e5be741cd8231907aec5445e5ef9fdeb
4
- data.tar.gz: ea5f7ebfd58fa183fe765d99a5e8efd81511ac0950b645f2008d7f0fd4c05cba
3
+ metadata.gz: 7b486c342be4c136a25806a45729f2aea7647e8c8eb6ea1204885cae717ca154
4
+ data.tar.gz: 5986f4e4b34eb12813c6fa4d79382217c521fc61daeb205aeabf03f913b1297d
5
5
  SHA512:
6
- metadata.gz: f669995c82560deaa6651800c8025ee6a9bde95706a0671a1aea066ebcfc4b857673ba71c783b39de57e16c2685f3d29e8b63f98d3d798e8351a9aa7938981bc
7
- data.tar.gz: 510020062d3c3f804f05eaf4135ace5443fb77da4043700ac7373db0e933ff5c57f356c2e396d294106709794615094e771a71127c791514739c1804222b5c80
6
+ metadata.gz: 4132cec64839b806d88a7231f92e82a9747d33c8aa627d57a35eb33d582ce0f1bcbac0a2d3b820d4a45bb40e4c284aeb307c7ebe0cfda368b4ddac35312e3c40
7
+ data.tar.gz: 04ff3c6c82fd8b2175b3bac106fc16bab94f29f1a31cd5f1365462bac1c9ac6d5df94950aa331c65e0199a500f6ec5935c29f4a13b97fba4b435bb1e423191f8
@@ -1,13 +1,35 @@
1
- # Changelog
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
2
4
 
3
- ## [Unreleased](https://github.com/department-of-veterans-affairs/vtk/tree/HEAD)
5
+ add docs
4
6
 
5
- [Full Changelog](https://github.com/department-of-veterans-affairs/vtk/compare/oclif...HEAD)
7
+ commit 3a7d97c35ca9f084a0f27d1a2ff522dd8e9b2abc
8
+ Author: Eric Boehs <eric@boehs.com>
9
+ Date: Mon Jan 4 10:11:38 2021 -0600
6
10
 
7
- **Merged pull requests:**
11
+ Looks like rake runs rubocop already
8
12
 
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))
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
@@ -23,7 +23,7 @@ module Vtk
23
23
  private
24
24
 
25
25
  def create_controller(name)
26
- `rails g module_component #{name} controller`
26
+ system("rails g module_component #{name} controller")
27
27
  end
28
28
  end
29
29
  end
@@ -23,7 +23,7 @@ module Vtk
23
23
  private
24
24
 
25
25
  def create_model(name)
26
- `rails g module_component #{name} model`
26
+ system("rails g module_component #{name} model")
27
27
  end
28
28
  end
29
29
  end
@@ -23,7 +23,7 @@ module Vtk
23
23
  private
24
24
 
25
25
  def create_serializer(name)
26
- `rails g module_component #{name} serializer`
26
+ system("rails g module_component #{name} serializer")
27
27
  end
28
28
  end
29
29
  end
@@ -23,7 +23,7 @@ module Vtk
23
23
  private
24
24
 
25
25
  def create_service(name)
26
- `rails g module_component #{name} service`
26
+ system("rails g module_component #{name} service")
27
27
  end
28
28
  end
29
29
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Vtk
4
- VERSION = '0.2.2'
4
+ VERSION = '0.2.3'
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.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Boehs