jquery_tag 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -16,7 +16,7 @@ Inside your views, you can just call the `jquery_tag` method.
16
16
 
17
17
  It accepts a some configuration options by using the following symbols:
18
18
 
19
- :version # Overrides the script version on the CDN URL. Defaults do '1.5.1'
19
+ :version # Overrides the script version on the CDN URL. Defaults do '1.5.2'
20
20
  :file # Path for the local script. Defaults do 'jquery.js'
21
21
  :ui # Loads jQuery UI. Accepts a true value for loading a 'jquery-ui.js' file or a String for the local path.
22
22
 
@@ -4,9 +4,9 @@ require 'jquery_tag/helpers/sinatra_helper'
4
4
 
5
5
  module JqueryTag # :nodoc:
6
6
  ## @return [String] the current (mostly latest) version of jQuery.
7
- def self.version; '1.5.1'; end
7
+ def self.version; '1.5.2'; end
8
8
  ## @return [String] the current (mostly latest) version of jQuery UI.
9
- def self.ui_version; '1.8.10'; end
9
+ def self.ui_version; '1.8.11'; end
10
10
  end
11
11
 
12
12
  ActionView::Base.send(:include, JqueryTag::RailsHelper) if defined? Rails
@@ -12,7 +12,7 @@ module JqueryTag # :nodoc:
12
12
  ## <script type="text/javascript" src="/javascripts/jquery.js"></script>
13
13
  ## Your application will be using a local version of jQuery, avoiding any network usage. Once you
14
14
  ## shift to production mode, the ouput will be:
15
- ## <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
15
+ ## <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
16
16
  ## Reducing your server bandwidth load and sharing the same cached file from many other sites.
17
17
  ##
18
18
  ## == Dependencies
@@ -1,3 +1,3 @@
1
1
  module JqueryTag #:nodoc:
2
- VERSION = "0.2.1" # :nodoc:
2
+ VERSION = "0.2.2" # :nodoc:
3
3
  end
@@ -41,7 +41,7 @@ describe JqueryTag::RailsHelper do
41
41
  before { production! }
42
42
 
43
43
  it "uses the google CDN path" do
44
- expects_include_with ['//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js']
44
+ expects_include_with ['//ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js']
45
45
  jquery_tag
46
46
  end
47
47
 
@@ -51,7 +51,7 @@ describe JqueryTag::RailsHelper do
51
51
  end
52
52
 
53
53
  it "uses the google CDN path for the jquery ui script" do
54
- expects_include_with ['//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js', '//ajax.googleapis.com/ajax/libs/jqueryui/1.8.10/jquery-ui.min.js']
54
+ expects_include_with ['//ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js', '//ajax.googleapis.com/ajax/libs/jqueryui/1.8.11/jquery-ui.min.js']
55
55
  jquery_tag :ui => true
56
56
  end
57
57
  end
@@ -33,7 +33,7 @@ describe JqueryTag::SinatraHelper do
33
33
  before { production! }
34
34
 
35
35
  it "uses the google CDN path" do
36
- expected = %Q{<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>}
36
+ expected = %Q{<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>}
37
37
  jquery_tag.should == expected
38
38
  end
39
39
 
@@ -43,8 +43,8 @@ describe JqueryTag::SinatraHelper do
43
43
  end
44
44
 
45
45
  it "uses the google CDN path for the jquery ui script" do
46
- expected = %Q{<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>}
47
- expected << %Q{<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jqueryui/1.8.10/jquery-ui.min.js"></script>}
46
+ expected = %Q{<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>}
47
+ expected << %Q{<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jqueryui/1.8.11/jquery-ui.min.js"></script>}
48
48
  jquery_tag(:ui => true).should == expected
49
49
  end
50
50
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jquery_tag
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
4
+ hash: 19
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 1
10
- version: 0.2.1
9
+ - 2
10
+ version: 0.2.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Lucas Mazza
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-03-14 00:00:00 -03:00
18
+ date: 2011-04-12 00:00:00 -03:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency