New Upstream Release - ruby-rails-assets-jquery-fullscreen-plugin

Ready changes

Summary

Merged new upstream version: 0.6.0 (was: 0.5.0+dfsg).

Resulting package

Built on 2023-02-06T14:03 (took 2m24s)

The resulting binary packages can be installed (if you have the apt repository enabled) by running one of:

apt install -t fresh-releases libjs-jquery-fullscreen-pluginapt install -t fresh-releases ruby-rails-assets-jquery-fullscreen-plugin

Lintian Result

Diff

diff --git a/Rakefile b/Rakefile
index 2995527..c702cfc 100644
--- a/Rakefile
+++ b/Rakefile
@@ -1 +1 @@
-require "bundler/gem_tasks"
+require 'bundler/gem_tasks'
diff --git a/app/assets/javascripts/jquery-fullscreen-plugin/jquery.fullscreen.js b/app/assets/javascripts/jquery-fullscreen-plugin/jquery.fullscreen.js
index 749ce94..4096f72 100644
--- a/app/assets/javascripts/jquery-fullscreen-plugin/jquery.fullscreen.js
+++ b/app/assets/javascripts/jquery-fullscreen-plugin/jquery.fullscreen.js
@@ -1,14 +1,28 @@
 /*
- * jQuery.fullscreen v0.5.0
+ * jquery.fullscreen v0.6.0
  * https://github.com/private-face/jquery.fullscreen
  *
- * Copyright (c) 2012–2014 Vladimir Zhuravlev
+ * Copyright (c) 2012–2016 Vladimir Zhuravlev
  * Released under the MIT license
  * https://github.com/private-face/jquery.fullscreen/blob/master/LICENSE
  *
- * Date: 2014-12-20
+ * Date: 2016-08-25
  **/
-;!function($) {function defined(a) {
+(function(global, factory) {
+	if (typeof define === 'function' && define.amd) {
+		// AMD
+		define(['jquery'], function (jQuery) {
+			return factory(jQuery);
+		});
+	} else if (typeof exports === 'object') {
+		// CommonJS/Browserify
+		factory(require('jquery'));
+	} else {
+		// Global
+		factory(global.jQuery);
+	}
+}(this, function($) {
+function defined(a) {
     return typeof a !== "undefined";
 }
 
@@ -51,9 +65,19 @@ var ua = navigator.userAgent;
 
 var fsEnabled = native("fullscreenEnabled");
 
-var IS_ANDROID_CHROME = ua.indexOf("Android") !== -1 && ua.indexOf("Chrome") !== -1;
+var parsedChromeUA = ua.match(/Android.*Chrome\/(\d+)\./);
 
-var IS_NATIVELY_SUPPORTED = !IS_ANDROID_CHROME && defined(native("fullscreenElement")) && (!defined(fsEnabled) || fsEnabled === true);
+var IS_ANDROID_CHROME = !!parsedChromeUA;
+
+var CHROME_VERSION;
+
+var ANDROID_CHROME_VERSION;
+
+if (IS_ANDROID_CHROME) {
+    ANDROID_CHROME_VERSION = parseInt(parsedChromeUA[1]);
+}
+
+var IS_NATIVELY_SUPPORTED = (!IS_ANDROID_CHROME || ANDROID_CHROME_VERSION > 37) && defined(native("fullscreenElement")) && (!defined(fsEnabled) || fsEnabled === true);
 
 var version = $.fn.jquery.split(".");
 
@@ -66,7 +90,7 @@ var FullScreenAbstract = function() {
 };
 
 FullScreenAbstract.prototype = {
-    "native": native,
+    native: native,
     _DEFAULT_OPTIONS: {
         styles: {
             boxSizing: "border-box",
@@ -197,7 +221,7 @@ var FullScreenFallback = function() {
     FullScreenFallback._super.constructor.apply(this, arguments);
     this._DEFAULT_OPTIONS = $.extend({}, this._DEFAULT_OPTIONS, {
         styles: {
-            position: "absolute",
+            position: "fixed",
             zIndex: "2147483647",
             left: 0,
             top: 0,
@@ -268,5 +292,5 @@ $.fn.fullscreen = function(options) {
         $.fullscreen.open(elem, options);
     }
     return this;
-};
-}(jQuery);
\ No newline at end of file
+};return $.fullscreen;
+}));
\ No newline at end of file
diff --git a/app/assets/javascripts/jquery-fullscreen-plugin/jquery.fullscreen.min.js b/app/assets/javascripts/jquery-fullscreen-plugin/jquery.fullscreen.min.js
index e63bd96..376f46a 100644
--- a/app/assets/javascripts/jquery-fullscreen-plugin/jquery.fullscreen.min.js
+++ b/app/assets/javascripts/jquery-fullscreen-plugin/jquery.fullscreen.min.js
@@ -1,13 +1,27 @@
 /*
- * jQuery.fullscreen v0.5.0
+ * jquery.fullscreen v0.6.0
  * https://github.com/private-face/jquery.fullscreen
  *
- * Copyright (c) 2012–2014 Vladimir Zhuravlev
+ * Copyright (c) 2012–2016 Vladimir Zhuravlev
  * Released under the MIT license
  * https://github.com/private-face/jquery.fullscreen/blob/master/LICENSE
  *
- * Date: 2014-12-20
+ * Date: 2016-08-25
  **/
-;!function($) {
-function defined(a){return"undefined"!=typeof a}function extend(a,b,c){var d=function(){};d.prototype=b.prototype,a.prototype=new d,a.prototype.constructor=a,b.prototype.constructor=b,a._super=b.prototype,c&&$.extend(a.prototype,c)}function native(a,b){var c;"string"==typeof a&&(b=a,a=document);for(var d=0;d<SUBST.length;++d){b=b.replace(SUBST[d][0],SUBST[d][1]);for(var e=0;e<VENDOR_PREFIXES.length;++e)if(c=VENDOR_PREFIXES[e],c+=0===e?b:b.charAt(0).toUpperCase()+b.substr(1),defined(a[c]))return a[c]}return void 0}var SUBST=[["",""],["exit","cancel"],["screen","Screen"]],VENDOR_PREFIXES=["","o","ms","moz","webkit","webkitCurrent"],ua=navigator.userAgent,fsEnabled=native("fullscreenEnabled"),IS_ANDROID_CHROME=-1!==ua.indexOf("Android")&&-1!==ua.indexOf("Chrome"),IS_NATIVELY_SUPPORTED=!IS_ANDROID_CHROME&&defined(native("fullscreenElement"))&&(!defined(fsEnabled)||fsEnabled===!0),version=$.fn.jquery.split("."),JQ_LT_17=parseInt(version[0])<2&&parseInt(version[1])<7,FullScreenAbstract=function(){this.__options=null,this._fullScreenElement=null,this.__savedStyles={}};FullScreenAbstract.prototype={"native":native,_DEFAULT_OPTIONS:{styles:{boxSizing:"border-box",MozBoxSizing:"border-box",WebkitBoxSizing:"border-box"},toggleClass:null},__documentOverflow:"",__htmlOverflow:"",_preventDocumentScroll:function(){this.__documentOverflow=document.body.style.overflow,this.__htmlOverflow=document.documentElement.style.overflow,$(this._fullScreenElement).is("body, html")||$("body, html").css("overflow","hidden")},_allowDocumentScroll:function(){document.body.style.overflow=this.__documentOverflow,document.documentElement.style.overflow=this.__htmlOverflow},_fullScreenChange:function(){this.__options&&(this.isFullScreen()?(this._preventDocumentScroll(),this._triggerEvents()):(this._allowDocumentScroll(),this._revertStyles(),this._triggerEvents(),this._fullScreenElement=null))},_fullScreenError:function(a){this.__options&&(this._revertStyles(),this._fullScreenElement=null,a&&$(document).trigger("fscreenerror",[a]))},_triggerEvents:function(){$(this._fullScreenElement).trigger(this.isFullScreen()?"fscreenopen":"fscreenclose"),$(document).trigger("fscreenchange",[this.isFullScreen(),this._fullScreenElement])},_saveAndApplyStyles:function(){var a=$(this._fullScreenElement);this.__savedStyles={};for(var b in this.__options.styles)this.__savedStyles[b]=this._fullScreenElement.style[b],this._fullScreenElement.style[b]=this.__options.styles[b];a.is("body")&&(document.documentElement.style.overflow=this.__options.styles.overflow),this.__options.toggleClass&&a.addClass(this.__options.toggleClass)},_revertStyles:function(){var a=$(this._fullScreenElement);for(var b in this.__options.styles)this._fullScreenElement.style[b]=this.__savedStyles[b];a.is("body")&&(document.documentElement.style.overflow=this.__savedStyles.overflow),this.__options.toggleClass&&a.removeClass(this.__options.toggleClass)},open:function(a,b){a!==this._fullScreenElement&&(this.isFullScreen()&&this.exit(),this._fullScreenElement=a,this.__options=$.extend(!0,{},this._DEFAULT_OPTIONS,b),this._saveAndApplyStyles())},exit:null,isFullScreen:null,isNativelySupported:function(){return IS_NATIVELY_SUPPORTED}};var FullScreenNative=function(){FullScreenNative._super.constructor.apply(this,arguments),this.exit=$.proxy(native("exitFullscreen"),document),this._DEFAULT_OPTIONS=$.extend(!0,{},this._DEFAULT_OPTIONS,{styles:{width:"100%",height:"100%"}}),$(document).bind(this._prefixedString("fullscreenchange")+" MSFullscreenChange",$.proxy(this._fullScreenChange,this)).bind(this._prefixedString("fullscreenerror")+" MSFullscreenError",$.proxy(this._fullScreenError,this))};extend(FullScreenNative,FullScreenAbstract,{VENDOR_PREFIXES:["","o","moz","webkit"],_prefixedString:function(a){return $.map(this.VENDOR_PREFIXES,function(b){return b+a}).join(" ")},open:function(a){FullScreenNative._super.open.apply(this,arguments);var b=native(a,"requestFullscreen");b.call(a)},exit:$.noop,isFullScreen:function(){return null!==native("fullscreenElement")},element:function(){return native("fullscreenElement")}});var FullScreenFallback=function(){FullScreenFallback._super.constructor.apply(this,arguments),this._DEFAULT_OPTIONS=$.extend({},this._DEFAULT_OPTIONS,{styles:{position:"absolute",zIndex:"2147483647",left:0,top:0,bottom:0,right:0}}),this.__delegateKeydownHandler()};extend(FullScreenFallback,FullScreenAbstract,{__isFullScreen:!1,__delegateKeydownHandler:function(){var a=$(document);a.delegate("*","keydown.fullscreen",$.proxy(this.__keydownHandler,this));var b=JQ_LT_17?a.data("events"):$._data(document).events,c=b.keydown;JQ_LT_17?b.live.unshift(b.live.pop()):c.splice(0,0,c.splice(c.delegateCount-1,1)[0])},__keydownHandler:function(a){return this.isFullScreen()&&27===a.which?(this.exit(),!1):!0},_revertStyles:function(){FullScreenFallback._super._revertStyles.apply(this,arguments),this._fullScreenElement.offsetHeight},open:function(){FullScreenFallback._super.open.apply(this,arguments),this.__isFullScreen=!0,this._fullScreenChange()},exit:function(){this.__isFullScreen&&(this.__isFullScreen=!1,this._fullScreenChange())},isFullScreen:function(){return this.__isFullScreen},element:function(){return this.__isFullScreen?this._fullScreenElement:null}}),$.fullscreen=IS_NATIVELY_SUPPORTED?new FullScreenNative:new FullScreenFallback,$.fn.fullscreen=function(a){var b=this[0];return a=$.extend({toggleClass:null,overflow:"hidden"},a),a.styles={overflow:a.overflow},delete a.overflow,b&&$.fullscreen.open(b,a),this};
-}(jQuery);
\ No newline at end of file
+(function(global, factory) {
+	if (typeof define === 'function' && define.amd) {
+		// AMD
+		define(['jquery'], function (jQuery) {
+			return factory(jQuery);
+		});
+	} else if (typeof exports === 'object') {
+		// CommonJS/Browserify
+		factory(require('jquery'));
+	} else {
+		// Global
+		factory(global.jQuery);
+	}
+}(this, function($) {
+
+function defined(a){return"undefined"!=typeof a}function extend(a,b,c){var d=function(){};d.prototype=b.prototype,a.prototype=new d,a.prototype.constructor=a,b.prototype.constructor=b,a._super=b.prototype,c&&$.extend(a.prototype,c)}function native(a,b){var c;"string"==typeof a&&(b=a,a=document);for(var d=0;d<SUBST.length;++d){b=b.replace(SUBST[d][0],SUBST[d][1]);for(var e=0;e<VENDOR_PREFIXES.length;++e)if(c=VENDOR_PREFIXES[e],c+=0===e?b:b.charAt(0).toUpperCase()+b.substr(1),defined(a[c]))return a[c]}}var SUBST=[["",""],["exit","cancel"],["screen","Screen"]],VENDOR_PREFIXES=["","o","ms","moz","webkit","webkitCurrent"],ua=navigator.userAgent,fsEnabled=native("fullscreenEnabled"),parsedChromeUA=ua.match(/Android.*Chrome\/(\d+)\./),IS_ANDROID_CHROME=!!parsedChromeUA,CHROME_VERSION,ANDROID_CHROME_VERSION;IS_ANDROID_CHROME&&(ANDROID_CHROME_VERSION=parseInt(parsedChromeUA[1]));var IS_NATIVELY_SUPPORTED=(!IS_ANDROID_CHROME||ANDROID_CHROME_VERSION>37)&&defined(native("fullscreenElement"))&&(!defined(fsEnabled)||fsEnabled===!0),version=$.fn.jquery.split("."),JQ_LT_17=parseInt(version[0])<2&&parseInt(version[1])<7,FullScreenAbstract=function(){this.__options=null,this._fullScreenElement=null,this.__savedStyles={}};FullScreenAbstract.prototype={native:native,_DEFAULT_OPTIONS:{styles:{boxSizing:"border-box",MozBoxSizing:"border-box",WebkitBoxSizing:"border-box"},toggleClass:null},__documentOverflow:"",__htmlOverflow:"",_preventDocumentScroll:function(){this.__documentOverflow=document.body.style.overflow,this.__htmlOverflow=document.documentElement.style.overflow,$(this._fullScreenElement).is("body, html")||$("body, html").css("overflow","hidden")},_allowDocumentScroll:function(){document.body.style.overflow=this.__documentOverflow,document.documentElement.style.overflow=this.__htmlOverflow},_fullScreenChange:function(){this.__options&&(this.isFullScreen()?(this._preventDocumentScroll(),this._triggerEvents()):(this._allowDocumentScroll(),this._revertStyles(),this._triggerEvents(),this._fullScreenElement=null))},_fullScreenError:function(a){this.__options&&(this._revertStyles(),this._fullScreenElement=null,a&&$(document).trigger("fscreenerror",[a]))},_triggerEvents:function(){$(this._fullScreenElement).trigger(this.isFullScreen()?"fscreenopen":"fscreenclose"),$(document).trigger("fscreenchange",[this.isFullScreen(),this._fullScreenElement])},_saveAndApplyStyles:function(){var a=$(this._fullScreenElement);this.__savedStyles={};for(var b in this.__options.styles)this.__savedStyles[b]=this._fullScreenElement.style[b],this._fullScreenElement.style[b]=this.__options.styles[b];a.is("body")&&(document.documentElement.style.overflow=this.__options.styles.overflow),this.__options.toggleClass&&a.addClass(this.__options.toggleClass)},_revertStyles:function(){var a=$(this._fullScreenElement);for(var b in this.__options.styles)this._fullScreenElement.style[b]=this.__savedStyles[b];a.is("body")&&(document.documentElement.style.overflow=this.__savedStyles.overflow),this.__options.toggleClass&&a.removeClass(this.__options.toggleClass)},open:function(a,b){a!==this._fullScreenElement&&(this.isFullScreen()&&this.exit(),this._fullScreenElement=a,this.__options=$.extend(!0,{},this._DEFAULT_OPTIONS,b),this._saveAndApplyStyles())},exit:null,isFullScreen:null,isNativelySupported:function(){return IS_NATIVELY_SUPPORTED}};var FullScreenNative=function(){FullScreenNative._super.constructor.apply(this,arguments),this.exit=$.proxy(native("exitFullscreen"),document),this._DEFAULT_OPTIONS=$.extend(!0,{},this._DEFAULT_OPTIONS,{styles:{width:"100%",height:"100%"}}),$(document).bind(this._prefixedString("fullscreenchange")+" MSFullscreenChange",$.proxy(this._fullScreenChange,this)).bind(this._prefixedString("fullscreenerror")+" MSFullscreenError",$.proxy(this._fullScreenError,this))};extend(FullScreenNative,FullScreenAbstract,{VENDOR_PREFIXES:["","o","moz","webkit"],_prefixedString:function(a){return $.map(this.VENDOR_PREFIXES,function(b){return b+a}).join(" ")},open:function(a,b){FullScreenNative._super.open.apply(this,arguments);var c=native(a,"requestFullscreen");c.call(a)},exit:$.noop,isFullScreen:function(){return null!==native("fullscreenElement")},element:function(){return native("fullscreenElement")}});var FullScreenFallback=function(){FullScreenFallback._super.constructor.apply(this,arguments),this._DEFAULT_OPTIONS=$.extend({},this._DEFAULT_OPTIONS,{styles:{position:"fixed",zIndex:"2147483647",left:0,top:0,bottom:0,right:0}}),this.__delegateKeydownHandler()};extend(FullScreenFallback,FullScreenAbstract,{__isFullScreen:!1,__delegateKeydownHandler:function(){var a=$(document);a.delegate("*","keydown.fullscreen",$.proxy(this.__keydownHandler,this));var b=JQ_LT_17?a.data("events"):$._data(document).events,c=b.keydown;JQ_LT_17?b.live.unshift(b.live.pop()):c.splice(0,0,c.splice(c.delegateCount-1,1)[0])},__keydownHandler:function(a){return!this.isFullScreen()||27!==a.which||(this.exit(),!1)},_revertStyles:function(){FullScreenFallback._super._revertStyles.apply(this,arguments),this._fullScreenElement.offsetHeight},open:function(a){FullScreenFallback._super.open.apply(this,arguments),this.__isFullScreen=!0,this._fullScreenChange()},exit:function(){this.__isFullScreen&&(this.__isFullScreen=!1,this._fullScreenChange())},isFullScreen:function(){return this.__isFullScreen},element:function(){return this.__isFullScreen?this._fullScreenElement:null}}),$.fullscreen=IS_NATIVELY_SUPPORTED?new FullScreenNative:new FullScreenFallback,$.fn.fullscreen=function(a){var b=this[0];return a=$.extend({toggleClass:null,overflow:"hidden"},a),a.styles={overflow:a.overflow},delete a.overflow,b&&$.fullscreen.open(b,a),this};
+}));
\ No newline at end of file
diff --git a/debian/changelog b/debian/changelog
index cebf81e..ba427c9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+ruby-rails-assets-jquery-fullscreen-plugin (0.6.0-1) UNRELEASED; urgency=low
+
+  * New upstream release.
+
+ -- Debian Janitor <janitor@jelmer.uk>  Mon, 06 Feb 2023 14:01:06 -0000
+
 ruby-rails-assets-jquery-fullscreen-plugin (0.5.0+dfsg-6) unstable; urgency=medium
 
   * Team upload.
diff --git a/debian/patches/set-rail-engine-root b/debian/patches/set-rail-engine-root
index 37edc69..398be0e 100644
--- a/debian/patches/set-rail-engine-root
+++ b/debian/patches/set-rail-engine-root
@@ -1,8 +1,10 @@
 Sets the rail config.root.
 ---
---- a/lib/rails-assets-jquery-fullscreen-plugin.rb
-+++ b/lib/rails-assets-jquery-fullscreen-plugin.rb
-@@ -25,7 +25,7 @@
+Index: ruby-rails-assets-jquery-fullscreen-plugin.git/lib/rails-assets-jquery-fullscreen-plugin.rb
+===================================================================
+--- ruby-rails-assets-jquery-fullscreen-plugin.git.orig/lib/rails-assets-jquery-fullscreen-plugin.rb
++++ ruby-rails-assets-jquery-fullscreen-plugin.git/lib/rails-assets-jquery-fullscreen-plugin.rb
+@@ -25,7 +25,7 @@ module RailsAssetsJqueryFullscreenPlugin
  
    if defined?(Rails)
      class Engine < ::Rails::Engine
diff --git a/lib/rails-assets-jquery-fullscreen-plugin/version.rb b/lib/rails-assets-jquery-fullscreen-plugin/version.rb
index 78832da..cac55e5 100644
--- a/lib/rails-assets-jquery-fullscreen-plugin/version.rb
+++ b/lib/rails-assets-jquery-fullscreen-plugin/version.rb
@@ -1,3 +1,3 @@
 module RailsAssetsJqueryFullscreenPlugin
-  VERSION = "0.5.0"
+  VERSION = "0.6.0"
 end
diff --git a/metadata.yml b/metadata.yml
deleted file mode 100644
index 10d141d..0000000
--- a/metadata.yml
+++ /dev/null
@@ -1,80 +0,0 @@
---- !ruby/object:Gem::Specification
-name: rails-assets-jquery-fullscreen-plugin
-version: !ruby/object:Gem::Version
-  version: 0.5.0
-platform: ruby
-authors:
-- rails-assets.org
-autorequire: 
-bindir: bin
-cert_chain: []
-date: 2015-05-26 00:00:00.000000000 Z
-dependencies:
-- !ruby/object:Gem::Dependency
-  name: bundler
-  requirement: !ruby/object:Gem::Requirement
-    requirements:
-    - - ~>
-      - !ruby/object:Gem::Version
-        version: '1.3'
-  type: :development
-  prerelease: false
-  version_requirements: !ruby/object:Gem::Requirement
-    requirements:
-    - - ~>
-      - !ruby/object:Gem::Version
-        version: '1.3'
-- !ruby/object:Gem::Dependency
-  name: rake
-  requirement: !ruby/object:Gem::Requirement
-    requirements:
-    - - '>='
-      - !ruby/object:Gem::Version
-        version: '0'
-  type: :development
-  prerelease: false
-  version_requirements: !ruby/object:Gem::Requirement
-    requirements:
-    - - '>='
-      - !ruby/object:Gem::Version
-        version: '0'
-description: jQuery plugin for showing any DOM element on a page in fullscreen mode
-email: 
-executables: []
-extensions: []
-extra_rdoc_files: []
-files:
-- Gemfile
-- README.md
-- Rakefile
-- app/assets/javascripts/jquery-fullscreen-plugin.js
-- app/assets/javascripts/jquery-fullscreen-plugin/jquery.fullscreen.js
-- app/assets/javascripts/jquery-fullscreen-plugin/jquery.fullscreen.min.js
-- lib/rails-assets-jquery-fullscreen-plugin.rb
-- lib/rails-assets-jquery-fullscreen-plugin/version.rb
-- rails-assets-jquery-fullscreen-plugin.gemspec
-homepage: https://github.com/private-face/jquery.fullscreen
-licenses:
-- MIT
-metadata: {}
-post_install_message: 
-rdoc_options: []
-require_paths:
-- lib
-required_ruby_version: !ruby/object:Gem::Requirement
-  requirements:
-  - - '>='
-    - !ruby/object:Gem::Version
-      version: '0'
-required_rubygems_version: !ruby/object:Gem::Requirement
-  requirements:
-  - - '>='
-    - !ruby/object:Gem::Version
-      version: '0'
-requirements: []
-rubyforge_project: 
-rubygems_version: 2.3.0
-signing_key: 
-specification_version: 4
-summary: jQuery plugin for showing any DOM element on a page in fullscreen mode
-test_files: []
diff --git a/rails-assets-jquery-fullscreen-plugin.json b/rails-assets-jquery-fullscreen-plugin.json
new file mode 100644
index 0000000..b45040c
--- /dev/null
+++ b/rails-assets-jquery-fullscreen-plugin.json
@@ -0,0 +1,32 @@
+{
+  "name": "rails-assets-jquery-fullscreen-plugin",
+  "downloads": null,
+  "version": "0.6.0",
+  "version_downloads": null,
+  "platform": "ruby",
+  "authors": "rails-assets.org",
+  "info": "jQuery plugin for showing any DOM element on a page in fullscreen mode",
+  
+  "licenses": "MIT",
+  
+  "metadata": {
+
+  },
+  "sha": null,
+  "project_uri": "https://github.com/private-face/jquery.fullscreen",
+  "gem_uri": null,
+  "homepage_uri": "https://github.com/private-face/jquery.fullscreen",
+  "wiki_uri": null,
+  "documentation_uri": null,
+  "mailing_list_uri": null,
+  "source_code_uri": "https://github.com/private-face/jquery.fullscreen",
+  "bug_tracker_uri": null,
+  "dependencies": {
+    "development": [
+    
+    ],
+    "runtime": [
+
+    ]
+  }
+}

Debdiff

[The following lists of changes regard files as different if they have different names, permissions or owners.]

Files in second set of .debs but not in first

-rw-r--r--  root/root   /usr/share/rubygems-integration/all/specifications/rails-assets-jquery-fullscreen-plugin-0.6.0.gemspec

Files in first set of .debs but not in second

-rw-r--r--  root/root   /usr/share/rubygems-integration/all/specifications/rails-assets-jquery-fullscreen-plugin-0.5.0.gemspec

No differences were encountered between the control files of package libjs-jquery-fullscreen-plugin

No differences were encountered between the control files of package ruby-rails-assets-jquery-fullscreen-plugin

More details

Full run details