permadeps 1446.1.8 → 1446.1.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/generators/permadeps/install/install_generator.rb +12 -11
- data/lib/permadeps/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cea10956c886c423529f9d0310f68a89d3dfa24eb28bc5af4a0c5c5f2f3c2864
|
4
|
+
data.tar.gz: b47d6f9de79cda763f39ea34e82ee8008208f7f1ab350c9050b2baac838e2f05
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e80f8c7348c0fb456fc85a53dd744629bf18c7ca1fd1a64f4a9a69037af6f3af896df6543ad7c5fcbc417beb43eacac7042a3651e59d142e0a7a61ccb9a7a892
|
7
|
+
data.tar.gz: 5bebce477bf921a7852599e9ede85f434907986b04c7349b8b74009e463c721036dbd67f78dea7d6d22b3f10d3a1d455bd777aaa1f5a96bbfa03f3b02881221d
|
@@ -41,11 +41,11 @@ module Permadeps
|
|
41
41
|
end
|
42
42
|
|
43
43
|
def generate_binstubs
|
44
|
-
run '
|
45
|
-
run '
|
46
|
-
run '
|
47
|
-
run '
|
48
|
-
run '
|
44
|
+
run 'bundle binstub bundler-audit'
|
45
|
+
run 'bundle binstub erb-formatter'
|
46
|
+
run 'bundle binstub erb_lint'
|
47
|
+
run 'bundle binstub i18n-tasks'
|
48
|
+
run 'bundle binstub ruby_audit'
|
49
49
|
|
50
50
|
remove_file 'bin/bundle-audit'
|
51
51
|
remove_file 'bin/erb-format'
|
@@ -107,12 +107,13 @@ module Permadeps
|
|
107
107
|
insert_into_file 'config/routes.rb', before: /^end/ do
|
108
108
|
<<-RUBY
|
109
109
|
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
110
|
+
# TODO: Uncomment the following lines to mount the engines.
|
111
|
+
# authenticate :user, ->(user) { user.admin? } do
|
112
|
+
# mount Blazer::Engine, at: 'rails/blazer'
|
113
|
+
# mount GoodJob::Engine, at: 'rails/good_job'
|
114
|
+
# mount PgHero::Engine, at: 'rails/pghero'
|
115
|
+
# mount RailsPerformance::Engine, at: 'rails/performance'
|
116
|
+
# end
|
116
117
|
RUBY
|
117
118
|
end
|
118
119
|
end
|
data/lib/permadeps/version.rb
CHANGED