1
0
Fork 0
mirror of https://github.com/kbparagua/paloma synced 2023-03-27 23:21:17 -04:00

Bug Fix: _callback.js cannot find _local.js

This commit is contained in:
kbparagua 2013-01-02 23:02:50 +08:00
parent 9c51c5a0b7
commit ff5af39d3d
4 changed files with 7 additions and 3 deletions

View file

@ -1,6 +1,10 @@
Changelog
=
Version 0.0.8
-
* Bug Fix: _callback.js cannot find _local.js
Version 0.0.7
-
* Fix A Major Bug that copies the _local.js template instead of _callbacks.js

View file

@ -1,2 +1,2 @@
//= require ./controller/_local
//= require ./_local.js
//= require_tree .

View file

@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = 'paloma'
s.version = '0.0.7'
s.version = '0.0.8'
s.summary = "a sexy way to organize javascript files using Rails` asset pipeline"
s.description = "a sexy way to organize javascript files using Rails` asset pipeline"
s.authors = ["Karl Paragua", "Bia Esmero"]

View file

@ -82,7 +82,7 @@ feature Paloma::AddGenerator, 'creating action with existing controller folder'
end
file '_callbacks.js' do
contains "//= require ./existing_controller_folder/_local"
contains "//= require ./_local.js"
contains "//= require_tree ."
end
end