rabl-extend-compiler 0.1.1 → 0.1.2
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4994a386fd78dadcbbc307abcbb14bd5a6a1fc0d
|
4
|
+
data.tar.gz: d089c5a193034ea0a6abc4573efdfefb6e735f95
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3cf709c779108313ab6834ce4350ee00d6393c7d1ad35a09ccd357f25ace5bc017a046a27bafaddfeed2663eca5191fb02b95bb999bd2e6e14b09db45b555323
|
7
|
+
data.tar.gz: 9180e79574ef28f561b34628d5c7be4f31986010ece269bba2ad86f2cbe4c9357ae2c15f08443bdc54a827ae457ec8452abca4e0c3c424d2af7fb4553f75d0c4
|
@@ -7,6 +7,7 @@ namespace :rabl do
|
|
7
7
|
namespace :compiler do
|
8
8
|
desc "compile all uncompbiled extensions into rabl files"
|
9
9
|
task :compile do
|
10
|
+
::Rake.application["environment"].invoke if ::Rake::Task.task_defined?("environment")
|
10
11
|
view_paths = ::Rabl.configuration.view_paths
|
11
12
|
|
12
13
|
loop do
|
@@ -7,6 +7,7 @@ namespace :rabl do
|
|
7
7
|
namespace :compiler do
|
8
8
|
desc "reset extensions to be compiled"
|
9
9
|
task :reset do
|
10
|
+
::Rake.application["environment"].invoke if ::Rake::Task.task_defined?("environment")
|
10
11
|
view_paths = ::Rabl.configuration.view_paths
|
11
12
|
|
12
13
|
view_paths.each do |view_path|
|
@@ -7,6 +7,7 @@ namespace :rabl do
|
|
7
7
|
namespace :compiler do
|
8
8
|
desc "verify that all extensions are created and the signatures match; return exit(1) if not verifiable"
|
9
9
|
task :verify do
|
10
|
+
::Rake.application["environment"].invoke if ::Rake::Task.task_defined?("environment")
|
10
11
|
view_paths = ::Rabl.configuration.view_paths
|
11
12
|
|
12
13
|
view_paths.each do |view_path|
|