ninjs 0.16.5 → 0.16.6
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.
- data/VERSION +1 -1
- data/lib/ninjs/project.rb +8 -4
- data/ninjs.gemspec +1 -1
- metadata +2 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.16.
|
|
1
|
+
0.16.6
|
data/lib/ninjs/project.rb
CHANGED
|
@@ -54,7 +54,8 @@ module Ninjs
|
|
|
54
54
|
ninjs_lib_secretary = Sprockets::Secretary.new(
|
|
55
55
|
:root => "#{Ninjs::BASE_DIR}",
|
|
56
56
|
:load_path => ["repository"],
|
|
57
|
-
source_files: ["repository/ninjs/core/nin.js"]
|
|
57
|
+
source_files: ["repository/ninjs/core/nin.js"],
|
|
58
|
+
interpolate_constants: false
|
|
58
59
|
)
|
|
59
60
|
|
|
60
61
|
ninjs_lib_secretary.concatenation.save_to "#{@root}/lib/nin.js"
|
|
@@ -66,7 +67,8 @@ module Ninjs
|
|
|
66
67
|
utility_lib_secretary = Sprockets::Secretary.new(
|
|
67
68
|
root: "#{Ninjs::BASE_DIR}",
|
|
68
69
|
load_path: ["repository"],
|
|
69
|
-
source_files: ["repository/ninjs/utilities/all.js"]
|
|
70
|
+
source_files: ["repository/ninjs/utilities/all.js"],
|
|
71
|
+
interpolate_constants: false
|
|
70
72
|
)
|
|
71
73
|
|
|
72
74
|
utility_lib_secretary.concatenation.save_to "#{@root}/lib/utilities.js"
|
|
@@ -152,7 +154,8 @@ module Ninjs
|
|
|
152
154
|
:root => "#{Ninjs::BASE_DIR}",
|
|
153
155
|
:asset_root => @config.asset_root,
|
|
154
156
|
:load_path => ["repository"],
|
|
155
|
-
source_files: ["#{module_file}"]
|
|
157
|
+
source_files: ["#{module_file}"],
|
|
158
|
+
interpolate_constants: false
|
|
156
159
|
)
|
|
157
160
|
|
|
158
161
|
module_file = ninjs_lib_secretary.concatenation
|
|
@@ -206,7 +209,8 @@ module Ninjs
|
|
|
206
209
|
:root => "#{Ninjs::BASE_DIR}",
|
|
207
210
|
:asset_root => @config.asset_root,
|
|
208
211
|
:load_path => ["repository"],
|
|
209
|
-
source_files: ["#{file}"]
|
|
212
|
+
source_files: ["#{file}"],
|
|
213
|
+
interpolate_constants: false
|
|
210
214
|
)
|
|
211
215
|
|
|
212
216
|
application_file = ninjs_lib_secretary.concatenation
|
data/ninjs.gemspec
CHANGED
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: ninjs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.16.
|
|
5
|
+
version: 0.16.6
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Dayton Nolan
|
|
@@ -363,7 +363,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
363
363
|
requirements:
|
|
364
364
|
- - ">="
|
|
365
365
|
- !ruby/object:Gem::Version
|
|
366
|
-
hash:
|
|
366
|
+
hash: 1943754164609095419
|
|
367
367
|
segments:
|
|
368
368
|
- 0
|
|
369
369
|
version: "0"
|