zfben_hanoi 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
@@ -118,7 +118,9 @@ class JavaScriptTestTask < ::Rake::TaskLib
|
|
118
118
|
def setup_mount_paths
|
119
119
|
mount "/", assets_directory
|
120
120
|
mount "/test", temp_directory
|
121
|
-
mount "/javascripts", sources_directory
|
121
|
+
mount "/javascripts", File.join(sources_directory, 'javascripts')
|
122
|
+
mount "/stylesheets", File.join(sources_directory, 'stylesheets')
|
123
|
+
mount "/images", File.join(sources_directory, 'images')
|
122
124
|
end
|
123
125
|
|
124
126
|
def setup_browsers(browsers)
|
data/zfben_hanoi.gemspec
CHANGED