bullet_train-super_scaffolding-templates 1.0.3 → 1.0.4
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7e3deda7c521320104088d57d2d5572b29a033a4258e7833998bf6d9a065f83c
|
4
|
+
data.tar.gz: 3d44b37ccdc308b5c0938562491747f205a64e8ea27116ad0320d9b64578331c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1b94b2f08bf8edb862dfd13ae86ced92d6c953aed57a39856188de16dd62baa973c42485dde41abcaea951a5d37377bb9fba2cc5f8bbf4bebafe322136891bff
|
7
|
+
data.tar.gz: 6edcfcc3695099ddfc6bb26fc5e2bcda5b124ce333742b8c5c822550a4fd33899e1d83f3c6057990d3ed7e6399526ba147d2d82499020b3bd289fd1f3d381c91
|
@@ -2,6 +2,10 @@ module BulletTrain
|
|
2
2
|
module SuperScaffolding
|
3
3
|
module Templates
|
4
4
|
class Engine < ::Rails::Engine
|
5
|
+
initializer "bullet_train.super_scaffolding.templates.register_template_path" do |app|
|
6
|
+
# Register the base path of this package with the Super Scaffolding engine.
|
7
|
+
BulletTrain::SuperScaffolding.template_paths << File.expand_path('../../../../..', __FILE__)
|
8
|
+
end
|
5
9
|
end
|
6
10
|
end
|
7
11
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bullet_train-super_scaffolding-templates
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrew Culver
|
@@ -102,7 +102,6 @@ files:
|
|
102
102
|
- db/migrate/20210602230736_add_option_fields_to_scaffolding_completely_concrete_tangible_things.rb
|
103
103
|
- lib/bullet_train/super_scaffolding/templates.rb
|
104
104
|
- lib/bullet_train/super_scaffolding/templates/engine.rb
|
105
|
-
- lib/bullet_train/super_scaffolding/templates/path_helper.rb
|
106
105
|
- lib/bullet_train/super_scaffolding/templates/version.rb
|
107
106
|
- lib/tasks/bullet_train/super_scaffolding/templates_tasks.rake
|
108
107
|
homepage: https://github.com/bullet-train-co/bullet_train-super_scaffolding-templates
|
@@ -1,13 +0,0 @@
|
|
1
|
-
# TODO This only exists because we're not loading engines as part of `bin/super-scaffold` right now, otherwise we
|
2
|
-
# would do it as part of the engine initializer.
|
3
|
-
module BulletTrain
|
4
|
-
module SuperScaffolding
|
5
|
-
module Templates
|
6
|
-
class PathHelper
|
7
|
-
def root_path
|
8
|
-
@root_path ||= Pathname.new(File.expand_path('../../../../..', __FILE__))
|
9
|
-
end
|
10
|
-
end
|
11
|
-
end
|
12
|
-
end
|
13
|
-
end
|