paloma 0.0.7 → 0.0.8
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/Changelog.md +4 -0
- data/app/templates/_callbacks.js +1 -1
- data/paloma.gemspec +1 -1
- data/spec/generator_spec.rb +1 -1
- metadata +1 -1
data/Changelog.md
CHANGED
data/app/templates/_callbacks.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
//= require ./
|
|
1
|
+
//= require ./_local.js
|
|
2
2
|
//= require_tree .
|
data/paloma.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'paloma'
|
|
3
|
-
s.version = '0.0.
|
|
3
|
+
s.version = '0.0.8'
|
|
4
4
|
s.summary = "a sexy way to organize javascript files using Rails` asset pipeline"
|
|
5
5
|
s.description = "a sexy way to organize javascript files using Rails` asset pipeline"
|
|
6
6
|
s.authors = ["Karl Paragua", "Bia Esmero"]
|
data/spec/generator_spec.rb
CHANGED
|
@@ -82,7 +82,7 @@ feature Paloma::AddGenerator, 'creating action with existing controller folder'
|
|
|
82
82
|
end
|
|
83
83
|
|
|
84
84
|
file '_callbacks.js' do
|
|
85
|
-
contains "//= require ./
|
|
85
|
+
contains "//= require ./_local.js"
|
|
86
86
|
contains "//= require_tree ."
|
|
87
87
|
end
|
|
88
88
|
end
|