jt_tools 0.0.12 → 0.0.17
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 +1 -0
- data/lib/install/.gitattributes +10 -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 +27 -4
- data/bin/standardrb +0 -29
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.17
|
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-02 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,19 +46,25 @@ 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
|
@@ -53,6 +73,7 @@ files:
|
|
53
73
|
- lib/install/.erb-lint.yml
|
54
74
|
- lib/install/.eslintrc.js
|
55
75
|
- lib/install/.fasterer.yml
|
76
|
+
- lib/install/.gitattributes
|
56
77
|
- lib/install/.github/config.yml
|
57
78
|
- lib/install/.pronto.yml
|
58
79
|
- lib/install/.pronto_eslint_npm.yml
|
@@ -78,9 +99,11 @@ files:
|
|
78
99
|
- lib/jt_tools/railtie.rb
|
79
100
|
- lib/jt_tools/version.rb
|
80
101
|
- lib/tasks/install.rake
|
102
|
+
- package.json
|
81
103
|
- rejuvenation.rb
|
82
104
|
- shipit.rubygems.yml
|
83
105
|
- template.rb
|
106
|
+
- yarn.lock
|
84
107
|
homepage: https://jtway.co
|
85
108
|
licenses:
|
86
109
|
- MIT
|
@@ -103,7 +126,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
103
126
|
- !ruby/object:Gem::Version
|
104
127
|
version: '0'
|
105
128
|
requirements: []
|
106
|
-
rubygems_version: 3.
|
129
|
+
rubygems_version: 3.2.4
|
107
130
|
signing_key:
|
108
131
|
specification_version: 4
|
109
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")
|