RubyApp 0.5.64 → 0.5.65
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/Gemfile.lock
CHANGED
|
@@ -46,6 +46,8 @@ module RubyApp
|
|
|
46
46
|
@stylesheets.push('http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css')
|
|
47
47
|
|
|
48
48
|
@scripts.push('http://code.jquery.com/jquery-1.7.1.min.js')
|
|
49
|
+
@scripts.push('http://code.jquery.com/ui/1.8.21/jquery-ui.min.js')
|
|
50
|
+
@scripts.push('/ruby_app/resources/jquery.ui.touch-punch.min.js')
|
|
49
51
|
@scripts.push('/ruby_app/resources/elements/mobile/document.js')
|
|
50
52
|
@scripts.push('http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js')
|
|
51
53
|
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* jQuery UI Touch Punch 0.2.2
|
|
3
|
+
*
|
|
4
|
+
* Copyright 2011, Dave Furfero
|
|
5
|
+
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
6
|
+
*
|
|
7
|
+
* Depends:
|
|
8
|
+
* jquery.ui.widget.js
|
|
9
|
+
* jquery.ui.mouse.js
|
|
10
|
+
*/
|
|
11
|
+
(function(b){b.support.touch="ontouchend" in document;if(!b.support.touch){return;}var c=b.ui.mouse.prototype,e=c._mouseInit,a;function d(g,h){if(g.originalEvent.touches.length>1){return;}g.preventDefault();var i=g.originalEvent.changedTouches[0],f=document.createEvent("MouseEvents");f.initMouseEvent(h,true,true,window,1,i.screenX,i.screenY,i.clientX,i.clientY,false,false,false,false,0,null);g.target.dispatchEvent(f);}c._touchStart=function(g){var f=this;if(a||!f._mouseCapture(g.originalEvent.changedTouches[0])){return;}a=true;f._touchMoved=false;d(g,"mouseover");d(g,"mousemove");d(g,"mousedown");};c._touchMove=function(f){if(!a){return;}this._touchMoved=true;d(f,"mousemove");};c._touchEnd=function(f){if(!a){return;}d(f,"mouseup");d(f,"mouseout");if(!this._touchMoved){d(f,"click");}a=false;};c._mouseInit=function(){var f=this;f.element.bind("touchstart",b.proxy(f,"_touchStart")).bind("touchmove",b.proxy(f,"_touchMove")).bind("touchend",b.proxy(f,"_touchEnd"));e.call(f);};})(jQuery);
|
data/lib/ruby_app/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: RubyApp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 137
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 5
|
|
9
|
-
-
|
|
10
|
-
version: 0.5.
|
|
9
|
+
- 65
|
|
10
|
+
version: 0.5.65
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Frank G. Ficnar
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2012-07-
|
|
18
|
+
date: 2012-07-11 00:00:00 Z
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
21
21
|
version_requirements: &id001 !ruby/object:Gem::Requirement
|
|
@@ -503,6 +503,7 @@ files:
|
|
|
503
503
|
- lib/ruby_app/resources/elements/mobile/platforms/ios/apple-touch-startup-image.psd
|
|
504
504
|
- lib/ruby_app/resources/elements/mobile/platforms/ios/manifest
|
|
505
505
|
- lib/ruby_app/resources/favicon.ico
|
|
506
|
+
- lib/ruby_app/resources/jquery.ui.touch-punch.min.js
|
|
506
507
|
- lib/ruby_app/response.rb
|
|
507
508
|
- lib/ruby_app/scripts/all_continuous.rb
|
|
508
509
|
- lib/ruby_app/scripts/all_once.rb
|