vtk 0.2.1 → 0.2.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ad9331d2e3269bcc2caeb46c9d8101cdca1b9152672c9960b0c223b4a3fa19b3
4
- data.tar.gz: c8f469ed05d379b64d4e1215b725acb69fd826c71552b6a99efcbe3225a3f2ed
3
+ metadata.gz: 678cd7a4d85c462d38c72c3e46a44593200c01392b16a81d3d483d85291fbce1
4
+ data.tar.gz: 581e25dc6f9380c05cc818ff8d14aec417631089abb884a3f6f91e6bacbc2179
5
5
  SHA512:
6
- metadata.gz: 2670fc0a7a779b98c303791497cc0561bf6c1e390f8b6892f994b532b5e2d443131edab7461d232aa2c35f16e9325283b64832b3e4d5e47c84bd6692caabcf1f
7
- data.tar.gz: a921b512cea519819d14d7e406a781d894658dbeecbc5fbd39a61eb7b9e32ca5a7796440b291a7c2641f990f17027a9907ea12e88b4d0c121ef6e66a8c36acd5
6
+ metadata.gz: c2431f851ba14a8e3be191d5013bf67ffe9b5a5b2adee26725a167df34aef97b235a1ec48d3992511eda52412904ae7224bb860511a04e572011bdb159051a9b
7
+ data.tar.gz: fada05e459fb4244d0aa32b0eeb62a46e4ba7cb68e1c6e2d26ecea208541ca63a340ccb2fd9c6f737e34b3343acc7c79d88ab67559618f8b89b3def509de571b
data/CHANGELOG.md CHANGED
@@ -2,12 +2,39 @@
2
2
 
3
3
  ## [Unreleased](https://github.com/department-of-veterans-affairs/vtk/tree/HEAD)
4
4
 
5
- [Full Changelog](https://github.com/department-of-veterans-affairs/vtk/compare/oclif...HEAD)
5
+ [Full Changelog](https://github.com/department-of-veterans-affairs/vtk/compare/v0.2.5...HEAD)
6
+
7
+ ## [v0.2.5](https://github.com/department-of-veterans-affairs/vtk/tree/v0.2.5) (2021-02-03)
8
+
9
+ [Full Changelog](https://github.com/department-of-veterans-affairs/vtk/compare/v0.2.4...v0.2.5)
10
+
11
+ **Merged pull requests:**
12
+
13
+ - Update changelog docs and raketask [\#13](https://github.com/department-of-veterans-affairs/vtk/pull/13) ([LindseySaari](https://github.com/LindseySaari))
14
+ - add gem [\#12](https://github.com/department-of-veterans-affairs/vtk/pull/12) ([LindseySaari](https://github.com/LindseySaari))
15
+
16
+ ## [v0.2.4](https://github.com/department-of-veterans-affairs/vtk/tree/v0.2.4) (2021-01-26)
17
+
18
+ [Full Changelog](https://github.com/department-of-veterans-affairs/vtk/compare/oclif...v0.2.4)
6
19
 
7
20
  **Merged pull requests:**
8
21
 
22
+ - added Docker instructions to the README [\#10](https://github.com/department-of-veterans-affairs/vtk/pull/10) ([thilton-oddball](https://github.com/thilton-oddball))
23
+ - use system command [\#7](https://github.com/department-of-veterans-affairs/vtk/pull/7) ([LindseySaari](https://github.com/LindseySaari))
9
24
  - Add additional module subcommands [\#6](https://github.com/department-of-veterans-affairs/vtk/pull/6) ([LindseySaari](https://github.com/LindseySaari))
10
25
  - Check for Rails dependency [\#5](https://github.com/department-of-veterans-affairs/vtk/pull/5) ([LindseySaari](https://github.com/LindseySaari))
11
26
  - 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
27
  - fixing markdown in README … [\#3](https://github.com/department-of-veterans-affairs/vtk/pull/3) ([thilton-oddball](https://github.com/thilton-oddball))
13
28
  - Start afresh with tty [\#2](https://github.com/department-of-veterans-affairs/vtk/pull/2) ([LindseySaari](https://github.com/LindseySaari))
29
+
30
+ ## [oclif](https://github.com/department-of-veterans-affairs/vtk/tree/oclif) (2020-08-10)
31
+
32
+ [Full Changelog](https://github.com/department-of-veterans-affairs/vtk/compare/79143038509757799edb2bb9be2f925b7d985221...oclif)
33
+
34
+ **Merged pull requests:**
35
+
36
+ - Open Jenkins [\#1](https://github.com/department-of-veterans-affairs/vtk/pull/1) ([cvalarida](https://github.com/cvalarida))
37
+
38
+
39
+
40
+ \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
data/README.md CHANGED
@@ -33,3 +33,24 @@ For helpful information about commands and subcommands run the following:
33
33
 
34
34
  $ vtk -h
35
35
  $ vtk module -h
36
+
37
+ ### Docker
38
+
39
+ If using the vtk gem in Docker, you may first need to run the following commands to avoid any errors:
40
+
41
+ $ make docker-clean
42
+ $ make build
43
+ $ make bash
44
+
45
+ ### Contributing
46
+ 1. Clone the repo
47
+ 2. Create your feature branch (git checkout -b my-new-feature)
48
+ 3. Run the tests (bundle exec rake)
49
+ 4. Commit your changes
50
+ 5. Push to the branch (git push origin my-new-feature)
51
+ 6. Create new Pull Request
52
+
53
+ ### Releasing
54
+ 1. Update the version to be whatever it should be and commit
55
+ 2. Update the changelog — (github_changelog_generator -u department-of-veterans-affairs -p vtk)
56
+ 3. bundle exec rake release
data/Rakefile CHANGED
@@ -10,3 +10,12 @@ require 'rubocop/rake_task'
10
10
  RuboCop::RakeTask.new
11
11
 
12
12
  task default: %i[spec rubocop]
13
+
14
+ desc 'Tags version, pushes to remote, and pushes gem'
15
+ task :release do
16
+ sh 'git', 'tag', "v#{Vtk::VERSION}"
17
+ sh 'git push origin master'
18
+ sh "git push origin v#{Vtk::VERSION}"
19
+ sh 'rake build'
20
+ sh 'ls pkg/*.gem | xargs -n 1 gem push'
21
+ end
@@ -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
data/lib/vtk/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Vtk
4
- VERSION = '0.2.1'
4
+ VERSION = '0.2.6'
5
5
  end
data/vtk.gemspec CHANGED
@@ -29,6 +29,7 @@ Gem::Specification.new do |spec|
29
29
 
30
30
  spec.add_dependency 'thor', '> 0.20.3'
31
31
 
32
+ spec.add_development_dependency 'github_changelog_generator', '~> 1.15.0'
32
33
  spec.add_development_dependency 'rake', '~> 13.0.0'
33
34
  spec.add_development_dependency 'rspec', '~> 3.10.0'
34
35
  spec.add_development_dependency 'rubocop', '~> 1.6.0'
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.1
4
+ version: 0.2.6
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-22 00:00:00.000000000 Z
13
+ date: 2021-02-03 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: thor
@@ -26,6 +26,20 @@ dependencies:
26
26
  - - ">"
27
27
  - !ruby/object:Gem::Version
28
28
  version: 0.20.3
29
+ - !ruby/object:Gem::Dependency
30
+ name: github_changelog_generator
31
+ requirement: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - "~>"
34
+ - !ruby/object:Gem::Version
35
+ version: 1.15.0
36
+ type: :development
37
+ prerelease: false
38
+ version_requirements: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - "~>"
41
+ - !ruby/object:Gem::Version
42
+ version: 1.15.0
29
43
  - !ruby/object:Gem::Dependency
30
44
  name: rake
31
45
  requirement: !ruby/object:Gem::Requirement