jt_tools 0.0.11 → 0.0.16
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 +4 -4
- data/.circleci/config.yml +35 -11
- data/.gitattributes +11 -0
- data/.github/workflows/test.yml +100 -0
- data/.gitignore +1 -1
- data/.rubocop.yml +9 -0
- data/.standard.yml +5 -1
- data/Gemfile +9 -3
- data/README.md +2 -1
- data/Rakefile +5 -5
- data/bin/ci-test +13 -0
- data/bin/lint +12 -0
- data/bin/rubocop +29 -0
- data/bin/test +23 -14
- data/jt_tools.gemspec +15 -14
- data/lib/install/.circleci/config.yml +43 -34
- data/lib/install/.fasterer.yml +3 -0
- data/lib/install/.gitattributes +10 -0
- data/lib/install/.github/config.yml +21 -0
- data/lib/install/.rubocop.yml +16 -13
- data/lib/install/.simplecov +6 -6
- data/lib/install/Brewfile +11 -11
- data/lib/install/Gemfile.tools +7 -6
- data/lib/install/app.json +1 -1
- data/lib/install/bin/tools-setup +3 -1
- data/lib/install/bin/tools-upgrade +2 -2
- data/lib/jt_tools.rb +2 -2
- data/lib/jt_tools/railtie.rb +2 -2
- data/lib/jt_tools/version.rb +1 -1
- data/lib/tasks/install.rake +3 -3
- data/package.json +5 -0
- data/rejuvenation.rb +6 -4
- data/template.rb +126 -103
- metadata +29 -5
- data/bin/standardrb +0 -29
- data/lib/install/.dependabot/config.yml +0 -32
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.
|
4
|
+
version: 0.0.16
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Paul Keen
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-01-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|
@@ -24,6 +24,20 @@ dependencies:
|
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '4.2'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bump
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
27
41
|
description: Helpful scripts to run linters locally and on CI
|
28
42
|
email:
|
29
43
|
- pftg@users.noreply.github.com
|
@@ -32,27 +46,35 @@ extensions: []
|
|
32
46
|
extra_rdoc_files: []
|
33
47
|
files:
|
34
48
|
- ".circleci/config.yml"
|
49
|
+
- ".gitattributes"
|
35
50
|
- ".github/FUNDING.yml"
|
36
51
|
- ".github/ISSUE_TEMPLATE/bug_report.md"
|
37
52
|
- ".github/ISSUE_TEMPLATE/custom.md"
|
38
53
|
- ".github/ISSUE_TEMPLATE/feature_request.md"
|
54
|
+
- ".github/workflows/test.yml"
|
39
55
|
- ".gitignore"
|
56
|
+
- ".rubocop.yml"
|
40
57
|
- ".standard.yml"
|
41
58
|
- Gemfile
|
59
|
+
- Gemfile.lock
|
42
60
|
- LICENSE
|
43
61
|
- LICENSE.txt
|
44
62
|
- README.md
|
45
63
|
- Rakefile
|
46
64
|
- _config.yml
|
47
|
-
- bin/
|
65
|
+
- bin/ci-test
|
66
|
+
- bin/lint
|
67
|
+
- bin/rubocop
|
48
68
|
- bin/test
|
49
69
|
- jt_tools.gemspec
|
50
70
|
- lib/install/.better-html.yml
|
51
71
|
- lib/install/.circleci/config.yml
|
52
|
-
- lib/install/.dependabot/config.yml
|
53
72
|
- lib/install/.editorconfig
|
54
73
|
- lib/install/.erb-lint.yml
|
55
74
|
- lib/install/.eslintrc.js
|
75
|
+
- lib/install/.fasterer.yml
|
76
|
+
- lib/install/.gitattributes
|
77
|
+
- lib/install/.github/config.yml
|
56
78
|
- lib/install/.pronto.yml
|
57
79
|
- lib/install/.pronto_eslint_npm.yml
|
58
80
|
- lib/install/.reek.yml
|
@@ -77,9 +99,11 @@ files:
|
|
77
99
|
- lib/jt_tools/railtie.rb
|
78
100
|
- lib/jt_tools/version.rb
|
79
101
|
- lib/tasks/install.rake
|
102
|
+
- package.json
|
80
103
|
- rejuvenation.rb
|
81
104
|
- shipit.rubygems.yml
|
82
105
|
- template.rb
|
106
|
+
- yarn.lock
|
83
107
|
homepage: https://jtway.co
|
84
108
|
licenses:
|
85
109
|
- MIT
|
@@ -102,7 +126,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
102
126
|
- !ruby/object:Gem::Version
|
103
127
|
version: '0'
|
104
128
|
requirements: []
|
105
|
-
rubygems_version: 3.
|
129
|
+
rubygems_version: 3.2.4
|
106
130
|
signing_key:
|
107
131
|
specification_version: 4
|
108
132
|
summary: Setup development scripts to manage code base effectively
|
data/bin/standardrb
DELETED
@@ -1,29 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
#
|
5
|
-
# This file was generated by Bundler.
|
6
|
-
#
|
7
|
-
# The application 'standardrb' is installed as part of a gem, and
|
8
|
-
# this file is here to facilitate running it.
|
9
|
-
#
|
10
|
-
|
11
|
-
require "pathname"
|
12
|
-
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
13
|
-
Pathname.new(__FILE__).realpath)
|
14
|
-
|
15
|
-
bundle_binstub = File.expand_path("../bundle", __FILE__)
|
16
|
-
|
17
|
-
if File.file?(bundle_binstub)
|
18
|
-
if File.read(bundle_binstub, 300) =~ /This file was generated by Bundler/
|
19
|
-
load(bundle_binstub)
|
20
|
-
else
|
21
|
-
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
|
22
|
-
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
|
23
|
-
end
|
24
|
-
end
|
25
|
-
|
26
|
-
require "rubygems"
|
27
|
-
require "bundler/setup"
|
28
|
-
|
29
|
-
load Gem.bin_path("standard", "standardrb")
|
@@ -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'
|