jt_tools 0.0.10 → 0.0.15
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 +11 -12
- data/.gitattributes +11 -0
- data/.github/workflows/test.yml +84 -0
- data/.rubocop.yml +11 -0
- data/.standard.yml +5 -1
- data/Gemfile +10 -3
- data/README.md +1 -1
- data/Rakefile +5 -5
- data/bin/ci-test +13 -0
- data/bin/lint +10 -0
- data/bin/rubocop +29 -0
- data/bin/test +11 -6
- data/jt_tools.gemspec +14 -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/rejuvenation.rb +6 -4
- data/template.rb +126 -103
- metadata +12 -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.15
|
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
|
@@ -32,11 +32,14 @@ extensions: []
|
|
32
32
|
extra_rdoc_files: []
|
33
33
|
files:
|
34
34
|
- ".circleci/config.yml"
|
35
|
+
- ".gitattributes"
|
35
36
|
- ".github/FUNDING.yml"
|
36
37
|
- ".github/ISSUE_TEMPLATE/bug_report.md"
|
37
38
|
- ".github/ISSUE_TEMPLATE/custom.md"
|
38
39
|
- ".github/ISSUE_TEMPLATE/feature_request.md"
|
40
|
+
- ".github/workflows/test.yml"
|
39
41
|
- ".gitignore"
|
42
|
+
- ".rubocop.yml"
|
40
43
|
- ".standard.yml"
|
41
44
|
- Gemfile
|
42
45
|
- LICENSE
|
@@ -44,15 +47,19 @@ files:
|
|
44
47
|
- README.md
|
45
48
|
- Rakefile
|
46
49
|
- _config.yml
|
47
|
-
- bin/
|
50
|
+
- bin/ci-test
|
51
|
+
- bin/lint
|
52
|
+
- bin/rubocop
|
48
53
|
- bin/test
|
49
54
|
- jt_tools.gemspec
|
50
55
|
- lib/install/.better-html.yml
|
51
56
|
- lib/install/.circleci/config.yml
|
52
|
-
- lib/install/.dependabot/config.yml
|
53
57
|
- lib/install/.editorconfig
|
54
58
|
- lib/install/.erb-lint.yml
|
55
59
|
- lib/install/.eslintrc.js
|
60
|
+
- lib/install/.fasterer.yml
|
61
|
+
- lib/install/.gitattributes
|
62
|
+
- lib/install/.github/config.yml
|
56
63
|
- lib/install/.pronto.yml
|
57
64
|
- lib/install/.pronto_eslint_npm.yml
|
58
65
|
- lib/install/.reek.yml
|
@@ -102,7 +109,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
102
109
|
- !ruby/object:Gem::Version
|
103
110
|
version: '0'
|
104
111
|
requirements: []
|
105
|
-
rubygems_version: 3.
|
112
|
+
rubygems_version: 3.2.4
|
106
113
|
signing_key:
|
107
114
|
specification_version: 4
|
108
115
|
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'
|