eyeballs_rails 0.1.6 → 0.1.7
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +1 -1
- data/lib/eyeballs_rails_helper.rb +4 -1
- metadata +2 -2
data/Rakefile
CHANGED
@@ -24,7 +24,7 @@ begin
|
|
24
24
|
gemspec.homepage = "http://github.com/paulca/eyeballs_rails"
|
25
25
|
gemspec.authors = ["Paul Campbell"]
|
26
26
|
gemspec.files = FileList["[A-Za-z]*", "lib/**/*"]
|
27
|
-
gemspec.version = "0.1.
|
27
|
+
gemspec.version = "0.1.7"
|
28
28
|
end
|
29
29
|
rescue LoadError
|
30
30
|
puts "Jeweler not available. Install it with: gem install jeweler"
|
@@ -1,6 +1,9 @@
|
|
1
1
|
module EyeballsRailsHelper
|
2
2
|
def eyeballs_javascripts(*mixin_javascripts)
|
3
|
-
javascripts = [
|
3
|
+
javascripts = [
|
4
|
+
'vendor/jquery/jquery-1.4.2.min.js',
|
5
|
+
'vendor/jquery/jquery.ba-bbq.min'
|
6
|
+
]
|
4
7
|
|
5
8
|
javascripts << mixin_javascripts
|
6
9
|
|