jt_tools 0.0.4 → 0.0.9
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 +24 -6
- data/.standard.yml +10 -0
- data/Gemfile +3 -1
- data/README.md +3 -1
- data/Rakefile +5 -5
- data/bin/test +9 -8
- data/jt_tools.gemspec +14 -14
- data/lib/install/.circleci/config.yml +31 -40
- data/lib/install/.editorconfig +1 -232
- data/lib/install/.erb-lint.yml +6 -6
- data/lib/install/.reek.yml +8 -13
- data/lib/install/.rubocop.yml +37 -1
- data/lib/install/.simplecov +8 -8
- data/lib/install/Brewfile +13 -12
- data/lib/install/Gemfile.tools +2 -0
- data/lib/install/app.json +19 -13
- data/lib/install/bin/circleci-auto_upgrade_tools +3 -3
- data/lib/install/bin/git-hooks/{post-merge.sample → post-merge} +5 -1
- data/lib/install/bin/git-hooks/{pre-push.sample → pre-push} +0 -0
- data/lib/install/bin/heroku-postdeploy +1 -1
- data/lib/install/bin/lint-pr +1 -1
- data/lib/install/bin/tools-setup +4 -1
- data/lib/install/bin/tools-upgrade +5 -2
- data/lib/install/config/rails_best_practices.yml +5 -5
- 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 +4 -5
- data/template.rb +139 -80
- metadata +9 -8
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.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Paul Keen
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-06-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|
@@ -37,6 +37,7 @@ files:
|
|
37
37
|
- ".github/ISSUE_TEMPLATE/custom.md"
|
38
38
|
- ".github/ISSUE_TEMPLATE/feature_request.md"
|
39
39
|
- ".gitignore"
|
40
|
+
- ".standard.yml"
|
40
41
|
- Gemfile
|
41
42
|
- LICENSE
|
42
43
|
- LICENSE.txt
|
@@ -62,8 +63,8 @@ files:
|
|
62
63
|
- lib/install/Procfile
|
63
64
|
- lib/install/app.json
|
64
65
|
- lib/install/bin/circleci-auto_upgrade_tools
|
65
|
-
- lib/install/bin/git-hooks/post-merge
|
66
|
-
- lib/install/bin/git-hooks/pre-push
|
66
|
+
- lib/install/bin/git-hooks/post-merge
|
67
|
+
- lib/install/bin/git-hooks/pre-push
|
67
68
|
- lib/install/bin/heroku-postdeploy
|
68
69
|
- lib/install/bin/heroku-release
|
69
70
|
- lib/install/bin/lint-pr
|
@@ -84,7 +85,7 @@ metadata:
|
|
84
85
|
homepage_uri: https://jtway.co
|
85
86
|
source_code_uri: https://github.com/jetthoughts/jt-tools/
|
86
87
|
changelog_uri: https://github.com/jetthoughts/jt-tools/
|
87
|
-
post_install_message:
|
88
|
+
post_install_message:
|
88
89
|
rdoc_options: []
|
89
90
|
require_paths:
|
90
91
|
- lib
|
@@ -99,8 +100,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
99
100
|
- !ruby/object:Gem::Version
|
100
101
|
version: '0'
|
101
102
|
requirements: []
|
102
|
-
rubygems_version: 3.1.
|
103
|
-
signing_key:
|
103
|
+
rubygems_version: 3.1.4
|
104
|
+
signing_key:
|
104
105
|
specification_version: 4
|
105
106
|
summary: Setup development scripts to manage code base effectively
|
106
107
|
test_files: []
|