jt_tools 0.0.14 → 0.0.19

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.
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.14
4
+ version: 0.0.19
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-10-23 00:00:00.000000000 Z
11
+ date: 2021-03-13 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
@@ -37,15 +51,20 @@ files:
37
51
  - ".github/ISSUE_TEMPLATE/bug_report.md"
38
52
  - ".github/ISSUE_TEMPLATE/custom.md"
39
53
  - ".github/ISSUE_TEMPLATE/feature_request.md"
54
+ - ".github/workflows/test.yml"
40
55
  - ".gitignore"
56
+ - ".rubocop.yml"
41
57
  - ".standard.yml"
42
58
  - Gemfile
59
+ - Gemfile.lock
43
60
  - LICENSE
44
61
  - LICENSE.txt
45
62
  - README.md
46
63
  - Rakefile
47
64
  - _config.yml
48
- - bin/standardrb
65
+ - bin/ci-test
66
+ - bin/lint
67
+ - bin/rubocop
49
68
  - bin/test
50
69
  - jt_tools.gemspec
51
70
  - lib/install/.better-html.yml
@@ -55,7 +74,8 @@ files:
55
74
  - lib/install/.eslintrc.js
56
75
  - lib/install/.fasterer.yml
57
76
  - lib/install/.gitattributes
58
- - lib/install/.github/config.yml
77
+ - lib/install/.github/dependabot.yml
78
+ - lib/install/.github/workflows/test.yml
59
79
  - lib/install/.pronto.yml
60
80
  - lib/install/.pronto_eslint_npm.yml
61
81
  - lib/install/.reek.yml
@@ -80,9 +100,11 @@ files:
80
100
  - lib/jt_tools/railtie.rb
81
101
  - lib/jt_tools/version.rb
82
102
  - lib/tasks/install.rake
103
+ - package.json
83
104
  - rejuvenation.rb
84
105
  - shipit.rubygems.yml
85
106
  - template.rb
107
+ - yarn.lock
86
108
  homepage: https://jtway.co
87
109
  licenses:
88
110
  - MIT
@@ -105,7 +127,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
105
127
  - !ruby/object:Gem::Version
106
128
  version: '0'
107
129
  requirements: []
108
- rubygems_version: 3.1.4
130
+ rubygems_version: 3.2.14
109
131
  signing_key:
110
132
  specification_version: 4
111
133
  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")