dopstick 0.0.11 → 0.0.12

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: d662e29058ffc041d2864b5088c62070df5e19065e8c02d9befb146181e7cd76
4
- data.tar.gz: 7ef797a5ed0fb5ed4373fef51680bc1882359740b4fb941334d2ced9d7750cd9
3
+ metadata.gz: 2aa86046c2695bb53d268387e84b64eaef271b4a84c7dc3063fd348e9cf468f1
4
+ data.tar.gz: dbb91f6abd2288002e101c5381674832302bca07ab95c51f6f4ef37a3ddd66bc
5
5
  SHA512:
6
- metadata.gz: 6263d71ca2f5937587b40fccda804034fd2c8e5b8cf0bedeafc4e334122ae21257e63cadcf21e3b48bfcb176721521daca60ff607bf713ed2caaa4a108fffc25
7
- data.tar.gz: 13521c47d326f71f0d757103f04d9bcffaea071476a47460751ca3eebdb734e1e824aaa31490ea2dc1b786b094f63ebf3f21edd2e754f566f3e95105d6717b08
6
+ metadata.gz: e023d152354956c4d8649b067a480df1c055314d90c17b45f2e859948eed11d5d4412adb7f328c2908fb360b950008f122f5efb12ff7f4a06b27e5b878d4ec4e
7
+ data.tar.gz: ec155594ae994bc9989f1ae12f4e09fbb06039058145592ab4f17a64d9f5564097c56f726a0d1c743f2111450308ac08ea9085f82d4d817115f7d2c7bf3a8191
@@ -3,6 +3,7 @@
3
3
  [![Tests](<%= options.github_url %>/workflows/ruby-tests/badge.svg)](https://github.com/fnando/<%= options.package_name %>)
4
4
  [![Gem](https://img.shields.io/gem/v/<%= options.package_name %>.svg)](https://rubygems.org/gems/<%= options.package_name %>)
5
5
  [![Gem](https://img.shields.io/gem/dt/<%= options.package_name %>.svg)](https://rubygems.org/gems/<%= options.package_name %>)
6
+ [![MIT License](https://img.shields.io/:License-MIT-blue.svg)](https://tldrlegal.com/license/mit-license)
6
7
 
7
8
  <%= options.description %>
8
9
 
@@ -30,7 +30,6 @@ module Dopstick
30
30
 
31
31
  def copy_npm_templates
32
32
  template "package.erb", "package.json"
33
- template "tests_workflow.erb", ".github/workflows/js-tests.yml"
34
33
  template "tsconfig.erb", "tsconfig.json"
35
34
  template "prettier.erb", "prettier.config.js"
36
35
  template "jest.erb", "jest.config.js"
@@ -51,6 +50,7 @@ module Dopstick
51
50
  end
52
51
 
53
52
  def copy_github_templates
53
+ template "tests_workflow.erb", ".github/workflows/js-tests.yml"
54
54
  template "funding.erb", ".github/FUNDING.yml"
55
55
  template "bug_report.erb", ".github/ISSUE_TEMPLATE/bug_report.md"
56
56
  template "feature_request.erb",
@@ -1,8 +1,9 @@
1
1
  # <%= options.package_name %>
2
2
 
3
- [![Tests](<%= options.github_url %>/workflows/node-tests/badge.svg)](https://github.com/fnando/<%= options.package_name %>)
3
+ [![Tests](<%= options.github_url %>/workflows/js-tests/badge.svg)](https://github.com/fnando/<%= options.package_name %>)
4
4
  [![NPM](https://img.shields.io/npm/v/<%= options.package_name %>.svg)](https://npmjs.org/package/<%= options.package_name %>)
5
5
  [![NPM](https://img.shields.io/npm/dt/<%= options.package_name %>.svg)](https://npmjs.org/package/<%= options.package_name %>)
6
+ [![MIT License](https://img.shields.io/:License-MIT-blue.svg)](https://tldrlegal.com/license/mit-license)
6
7
 
7
8
  <%= options.description %>
8
9
 
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: node-tests
2
+ name: js-tests
3
3
 
4
4
  on:
5
5
  pull_request_target:
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Dopstick
4
- VERSION = "0.0.11"
4
+ VERSION = "0.0.12"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dopstick
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.11
4
+ version: 0.0.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nando Vieira
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-01-15 00:00:00.000000000 Z
11
+ date: 2022-01-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -211,10 +211,10 @@ metadata:
211
211
  rubygems_mfa_required: 'true'
212
212
  homepage_uri: https://github.com/fnando/dopstick
213
213
  bug_tracker_uri: https://github.com/fnando/dopstick/issues
214
- source_code_uri: https://github.com/fnando/dopstick/tree/v0.0.11
215
- changelog_uri: https://github.com/fnando/dopstick/tree/v0.0.11/CHANGELOG.md
216
- documentation_uri: https://github.com/fnando/dopstick/tree/v0.0.11/README.md
217
- license_uri: https://github.com/fnando/dopstick/tree/v0.0.11/LICENSE.md
214
+ source_code_uri: https://github.com/fnando/dopstick/tree/v0.0.12
215
+ changelog_uri: https://github.com/fnando/dopstick/tree/v0.0.12/CHANGELOG.md
216
+ documentation_uri: https://github.com/fnando/dopstick/tree/v0.0.12/README.md
217
+ license_uri: https://github.com/fnando/dopstick/tree/v0.0.12/LICENSE.md
218
218
  post_install_message:
219
219
  rdoc_options: []
220
220
  require_paths: