jquery_mobile_rails 1.4.1 → 1.4.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a2be81fb92314e2cf22e232b7f0e7133cfd55be6
4
- data.tar.gz: c12c33c357a8992b1d5542be06c0f8267039b2f1
3
+ metadata.gz: 4e37a97f947864642cf667084d3d5ca5a0890165
4
+ data.tar.gz: ff139c1ab4bf916890ab686f326e01da4615695c
5
5
  SHA512:
6
- metadata.gz: 90a16f900b3954bcc08bc59ba3ac20bd3b93e622c878d6383b1e060e078cdde0137809650ae61d6fc59a1e7c49799a3989ed5177d5335bbb8302b089ab96fa4a
7
- data.tar.gz: a3ef832e9f0a5e60beff059a9313746cd35b1af476138f235c40ea876924ada702c0f84e00cdb3a0bb5f033f4e7db4c184ed317663f3d3a8c3b568c6ae45e73f
6
+ metadata.gz: d4253ca34777b40f6363c5f7a18afe1f9a21a1bc57c24e33f7c7b3e8816f32b99daf4cc8201d1209b6a3c069b0a32f8b2be0c29ccee97695269dd9ab373b87c4
7
+ data.tar.gz: d6d0f90d57cac2e2dfe8cac527b96e54d58b20bfca0fbc2f956feb7f9c2f71a1935c8811c0c98203275867a038289f01f71d67289edd0c4974a42d5b52f3d3e2
data/README.rdoc CHANGED
@@ -4,7 +4,7 @@ This gem adds the jQuery Mobile files to Rails' asset pipeline.
4
4
 
5
5
  === Gem's jQuery Mobile Version
6
6
 
7
- 1.4.1 (gem 1.4.1)
7
+ 1.4.2 (gem 1.4.2)
8
8
 
9
9
  === Installation
10
10
 
@@ -30,7 +30,7 @@ And the same in your application.css manifest:
30
30
 
31
31
  I built this gem for using with the Mobylette gem, but it will work with your standalone application, or with any other gem that filters your mobile requests.
32
32
 
33
- Please refer to jQuery Mobile's documentation for information on laying out your app and using all of the jQuery Mobile features: http://view.jquerymobile.com/1.4.1/dist/demos/
33
+ Please refer to jQuery Mobile's documentation for information on laying out your app and using all of the jQuery Mobile features: http://view.jquerymobile.com/1.4.2/dist/demos/
34
34
 
35
35
  === Example
36
36
 
@@ -11,7 +11,7 @@ task :"jquery_mobile_rails_css_fix" do
11
11
  file_content = ''
12
12
  file_content = File.read(css_file_name, mode: "r:UTF-8")
13
13
 
14
- file_content.gsub! /url\(\"*images\/(.*\.)(png|gif)\"*\)/ do
14
+ file_content.gsub! /url\(\"*images\/(.*?\.)(png|gif)\"*\)/ do
15
15
  "image-url(\"jquery-mobile/#{$1}#{$2}\")"
16
16
  end
17
17
 
@@ -1,3 +1,3 @@
1
1
  module JqueryMobileRails
2
- VERSION = "1.4.1"
2
+ VERSION = "1.4.2"
3
3
  end