jt_tools 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: ca58ce62c8051fef7f2111b3bdf395730e856c1f9eac7e5a1fa3bd6cb02cfd32
4
- data.tar.gz: 711f84e4d89e020b559c4ab1314f8b694ca241c214cc0f90045a3bfea3aa6e4a
3
+ metadata.gz: 404bb837c242626d8d1659431f454d945ab20c9aaed4726de35342502b092b3f
4
+ data.tar.gz: 5c53a281dce0de17f5a49cf88f21b149a13dc12f0cfbd3ea6e9b3b5ba2657d70
5
5
  SHA512:
6
- metadata.gz: 7e65608ea2fafe9d5801be68214282b649452f50c8b3f058ec87aa0d04c8e86f0b43c1e9ee7631f9a962de383fa59b5396a6f776e43ee2edd8e3bfc2a95b90c0
7
- data.tar.gz: 68079b100b0be3eddf935aedeb994d62a5f852c7a706590bd4a08968749bcad05de69f95cdf225d2365df6e6b430ba6be711eed5d718ce1e6fed9187c89896b8
6
+ metadata.gz: 3b4e7ff9003cd54e395130ff3170cac28dbba205c8abf63234cc82a9cbbb1c737ff38ab0e40ebe43f6fa150298540888a44248670008d2194bc64ced20999d74
7
+ data.tar.gz: 76e8ba0920a9e29fa088736fd13aca62b994a349f580f14c45322dafff1a39de03c70e8d22cd11f29fe92e0e06d618a036114e8a24cba0863f14710be2150ac3
@@ -0,0 +1,2 @@
1
+ speedups:
2
+ fetch_with_argument_vs_block: false
@@ -0,0 +1,21 @@
1
+ ---
2
+ version: 2
3
+ updates:
4
+ - package-ecosystem: bundler
5
+ directory: "/"
6
+ schedule:
7
+ interval: weekly
8
+ time: "10:00"
9
+ open-pull-requests-limit: 3
10
+ versioning-strategy: lockfile-only
11
+ allow:
12
+ - dependency-type: all
13
+ - package-ecosystem: npm
14
+ directory: "/"
15
+ schedule:
16
+ interval: weekly
17
+ time: "10:00"
18
+ open-pull-requests-limit: 3
19
+ versioning-strategy: lockfile-only
20
+ allow:
21
+ - dependency-type: all
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module JtTools
4
- VERSION = "0.0.11"
4
+ VERSION = "0.0.12"
5
5
  end
@@ -102,7 +102,7 @@ else
102
102
  "parallelize(workers: :number_of_processors) unless ENV['COVERAGE']"
103
103
  end
104
104
 
105
- directory "lib/install/.dependabot", ".dependabot"
105
+ directory "lib/install/.github", ".github"
106
106
 
107
107
  say "=> Copying heroku configuration"
108
108
  copy_file "lib/install/app.json", "app.json"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jt_tools
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
  - Paul Keen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-08-10 00:00:00.000000000 Z
11
+ date: 2020-09-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -49,10 +49,11 @@ files:
49
49
  - jt_tools.gemspec
50
50
  - lib/install/.better-html.yml
51
51
  - lib/install/.circleci/config.yml
52
- - lib/install/.dependabot/config.yml
53
52
  - lib/install/.editorconfig
54
53
  - lib/install/.erb-lint.yml
55
54
  - lib/install/.eslintrc.js
55
+ - lib/install/.fasterer.yml
56
+ - lib/install/.github/config.yml
56
57
  - lib/install/.pronto.yml
57
58
  - lib/install/.pronto_eslint_npm.yml
58
59
  - lib/install/.reek.yml
@@ -1,32 +0,0 @@
1
- ---
2
- version: 1
3
- update_configs:
4
- # Keep package.json (& lockfiles) up to date as soon as
5
- # new versions are published to the npm registry
6
- - package_manager: javascript
7
- directory: /
8
- update_schedule: weekly
9
- allowed_updates:
10
- - match:
11
- dependency_type: development
12
- update_type: all
13
- - match:
14
- dependency_type: production
15
- update_type: security
16
- version_requirement_updates: 'off'
17
- - package_manager: ruby:bundler
18
- directory: /
19
- update_schedule: weekly
20
- allowed_updates:
21
- - match:
22
- dependency_type: all
23
- update_type: all
24
- automerged_updates:
25
- - match:
26
- dependency_name: puma
27
- update_type: semver:minor
28
- - match:
29
- dependency_name: rspec*
30
- - match:
31
- dependency_name: capybara*
32
- version_requirement_updates: 'off'