[DRE-commits] [diaspora] 14/257: recreate pacthes

Praveen Arimbrathodiyil praveen at moszumanska.debian.org
Sun Apr 12 14:16:46 UTC 2015


This is an automated email from the git hooks/post-receive script.

praveen pushed a commit to branch master
in repository diaspora.

commit 730f07de2a763257b7c42edb73f6ce57903741d8
Author: Praveen Arimbrathodiyil <praveen at debian.org>
Date:   Fri Apr 25 19:15:29 2014 +0530

    recreate pacthes
---
 Gemfile                                            | 219 +++++++++
 Gemfile.lock                                       | 527 ++++++++++++++++++++
 .../loosen-activerecord-import-version.patch       |  11 +
 debian/patches/loosen-carrierwave-version.patch    |  11 +
 debian/patches/loosen-devise-version.patch         |  11 +
 debian/patches/loosen-fog-version.patch            |  11 +
 .../loosen-http-accept-language-version.patch      |  11 +
 .../loosen-messagebus-ruby-api-version.patch       |  11 +
 debian/patches/loosen-mysql2-version.patch         |  11 +
 debian/patches/loosen-rack-cors-version.patch      |  11 +
 debian/patches/loosen-rails-i18n-version.patch     |  11 +
 debian/patches/loosen-sidekiq-version.patch        |  11 +
 debian/patches/loosen-sinatra-version.patch        |  11 +
 debian/patches/loosen-unicorn-version-dep.patch    |  11 +
 .../remove-development-test-from-gemfile.patch     |  58 +++
 debian/patches/remove-gemfile-lock.patch           | 530 +++++++++++++++++++++
 debian/patches/series                              |  14 +
 17 files changed, 1480 insertions(+)

diff --git a/Gemfile b/Gemfile
new file mode 100644
index 0000000..3f0c29e
--- /dev/null
+++ b/Gemfile
@@ -0,0 +1,219 @@
+source 'https://rubygems.org'
+
+gem 'rails', '3.2.17'
+
+# Appserver
+
+gem 'unicorn', '4.8.0', :require => false
+
+# API and JSON
+
+gem 'acts_as_api', '0.4.2'
+gem 'json',        '1.8.1'
+
+# Authentication
+
+gem 'devise', '3.2.2'
+
+# Captcha
+
+gem 'galetahub-simple_captcha', '0.1.5', :require => 'simple_captcha'
+
+# Background processing
+
+gem 'sidekiq', '2.17.2'
+gem 'sinatra', '1.3.3'
+
+# Configuration
+
+gem 'configurate', '0.0.8'
+
+# Cross-origin resource sharing
+
+gem 'rack-cors', '0.2.8', :require => 'rack/cors'
+
+# Database
+
+ENV['DB'] ||= 'mysql'
+
+gem 'mysql2', '0.3.14' if ENV['DB'] == 'all' || ENV['DB'] == 'mysql'
+gem 'pg',     '0.17.1' if ENV['DB'] == 'all' || ENV['DB'] == 'postgres'
+
+gem 'activerecord-import', '0.3.1'
+gem 'foreigner',           '1.6.1'
+
+# File uploading
+
+gem 'carrierwave', '0.9.0'
+gem 'fog',         '1.19.0'
+gem 'mini_magick', '3.7.0'
+gem 'remotipart',  '1.2.1'
+
+# Localization
+
+gem 'http_accept_language', '1.0.2'
+gem 'i18n-inflector-rails', '1.0.7'
+gem 'rails-i18n',           '0.7.4'
+
+# Mail
+
+gem 'markerb',             '1.0.1'
+gem 'messagebus_ruby_api', '1.0.3'
+
+# Parsing
+
+gem 'nokogiri',         '1.6.1'
+gem 'rails_autolink',   '1.1.5'
+gem 'redcarpet',        '3.0.0'
+gem 'roxml',            '3.1.6'
+gem 'ruby-oembed',      '0.8.9'
+gem 'opengraph_parser', '0.2.3'
+
+
+# Please remove when migrating to Rails 4
+gem 'strong_parameters'
+
+
+# Services
+
+gem 'omniauth',          '1.1.4'
+gem 'omniauth-facebook', '1.6.0'
+gem 'omniauth-tumblr',   '1.1'
+gem 'omniauth-twitter',  '1.0.1'
+gem 'twitter',           '4.8.1'
+gem 'omniauth-wordpress','0.2.0'
+
+# Tags
+
+gem 'acts-as-taggable-on', '2.4.1'
+
+# URIs and HTTP
+
+gem 'addressable',        '2.3.5', :require => 'addressable/uri'
+gem 'faraday',            '0.8.9'
+gem 'faraday_middleware', '0.9.0'
+gem 'typhoeus',           '0.6.7'
+
+# Views
+
+gem 'client_side_validations', '3.2.6'
+gem 'gon',                     '4.1.1'
+gem 'haml',                    '4.0.5'
+gem 'mobile-fu',               '1.2.2'
+gem 'will_paginate',           '3.0.5'
+
+# Workarounds
+# https://github.com/rubyzip/rubyzip#important-note
+gem 'zip-zip'
+
+### GROUPS ####
+
+group :assets do
+
+  # Icons
+  gem 'entypo-rails'
+
+  # CSS
+
+  gem 'bootstrap-sass', '2.2.2.0'
+  gem 'compass-rails',  '1.0.3'
+  gem 'sass-rails',     '3.2.6'
+
+  # Compression
+
+  gem 'uglifier', '2.1.2'
+
+  # JavaScript
+
+  gem 'backbone-on-rails', '1.1.0'
+  gem 'handlebars_assets', '0.12.0'
+  gem 'jquery-rails',      '2.1.4'
+
+  # Windows and OSX have an execjs compatible runtime built-in, Linux users should
+  # install Node.js or use 'therubyracer'.
+  #
+  # See https://github.com/sstephenson/execjs#readme for more supported runtimes
+
+  # gem 'therubyracer', :platform => :ruby
+end
+
+group :production do # we don't install these on travis to speed up test runs
+
+  # Administration
+
+  gem 'rails_admin', '0.4.9'
+
+  # Analytics
+
+  gem 'rack-google-analytics', '0.14.0', :require => 'rack/google-analytics'
+  gem 'rack-piwik',            '0.2.2',  :require => 'rack/piwik'
+
+  # Click-jacking protection
+
+  gem 'rack-protection', '1.2'
+
+  # Process management
+
+  gem 'foreman', '0.62'
+
+  # Redirects
+
+  gem 'rack-rewrite', '1.5.0', :require => false
+  gem 'rack-ssl',     '1.3.3', :require => 'rack/ssl'
+
+  # Third party asset hosting
+
+  gem 'asset_sync', '1.0.0', :require => false
+end
+
+group :development do
+  # Comparison images
+
+  gem 'rmagick', '2.13.2', :require => false
+
+  # Automatic test runs
+
+  gem 'guard-cucumber', '1.4.1'
+  gem 'guard-rspec',    '4.2.4'
+  gem 'rb-fsevent',     '0.9.4', :require => false
+  gem 'rb-inotify',     '0.9.3', :require => false
+
+  # Preloading environment
+
+  gem 'guard-spork', '1.5.1'
+  gem 'spork',       '1.0.0rc4'
+end
+
+group :test do
+  # RSpec (unit tests, some integration tests)
+
+  gem 'fixture_builder',   '0.3.6'
+  gem 'fuubar',            '1.3.2'
+  gem 'rspec-instafail',   '0.2.4', :require => false
+  gem 'test_after_commit', '0.2.2'
+
+  # Cucumber (integration tests)
+
+  gem 'capybara',           '2.2.1'
+  gem 'database_cleaner',   '1.2.0'
+  gem 'selenium-webdriver', '2.39.0'
+
+  # General helpers
+
+  gem 'factory_girl_rails', '4.3.0'
+  gem 'timecop',            '0.7.1'
+  gem 'webmock',            '1.16.1', :require => false
+end
+
+
+group :development, :test do
+  # RSpec (unit tests, some integration tests)
+  gem "rspec-rails",     '2.14.1'
+
+  # Cucumber (integration tests)
+  gem 'cucumber-rails',     '1.4.0', :require => false
+
+  # Jasmine (client side application tests (JS))
+  gem 'jasmine', '1.3.2'
+  gem 'sinon-rails',	    '1.7.3'
+end
diff --git a/Gemfile.lock b/Gemfile.lock
new file mode 100644
index 0000000..e24bf53
--- /dev/null
+++ b/Gemfile.lock
@@ -0,0 +1,527 @@
+GEM
+  remote: https://rubygems.org/
+  specs:
+    actionmailer (3.2.17)
+      actionpack (= 3.2.17)
+      mail (~> 2.5.4)
+    actionpack (3.2.17)
+      activemodel (= 3.2.17)
+      activesupport (= 3.2.17)
+      builder (~> 3.0.0)
+      erubis (~> 2.7.0)
+      journey (~> 1.0.4)
+      rack (~> 1.4.5)
+      rack-cache (~> 1.2)
+      rack-test (~> 0.6.1)
+      sprockets (~> 2.2.1)
+    activemodel (3.2.17)
+      activesupport (= 3.2.17)
+      builder (~> 3.0.0)
+    activerecord (3.2.17)
+      activemodel (= 3.2.17)
+      activesupport (= 3.2.17)
+      arel (~> 3.0.2)
+      tzinfo (~> 0.3.29)
+    activerecord-import (0.3.1)
+      activerecord (~> 3.0)
+    activeresource (3.2.17)
+      activemodel (= 3.2.17)
+      activesupport (= 3.2.17)
+    activesupport (3.2.17)
+      i18n (~> 0.6, >= 0.6.4)
+      multi_json (~> 1.0)
+    acts-as-taggable-on (2.4.1)
+      rails (>= 3, < 5)
+    acts_as_api (0.4.2)
+      activemodel (>= 3.0.0)
+      activesupport (>= 3.0.0)
+      rack (>= 1.1.0)
+    addressable (2.3.5)
+    arel (3.0.3)
+    asset_sync (1.0.0)
+      activemodel
+      fog (>= 1.8.0)
+    atomic (1.1.14)
+    backbone-on-rails (1.1.0.0)
+      eco
+      ejs
+      jquery-rails
+      rails (>= 3.1)
+    bcrypt-ruby (3.1.2)
+    bootstrap-sass (2.2.2.0)
+      sass (~> 3.2)
+    builder (3.0.4)
+    capybara (2.2.1)
+      mime-types (>= 1.16)
+      nokogiri (>= 1.3.3)
+      rack (>= 1.0.0)
+      rack-test (>= 0.5.4)
+      xpath (~> 2.0)
+    carrierwave (0.9.0)
+      activemodel (>= 3.2.0)
+      activesupport (>= 3.2.0)
+      json (>= 1.7)
+    celluloid (0.15.2)
+      timers (~> 1.1.0)
+    childprocess (0.3.9)
+      ffi (~> 1.0, >= 1.0.11)
+    chunky_png (1.2.9)
+    client_side_validations (3.2.6)
+    coderay (1.1.0)
+    coffee-rails (3.2.2)
+      coffee-script (>= 2.2.0)
+      railties (~> 3.2.0)
+    coffee-script (2.2.0)
+      coffee-script-source
+      execjs
+    coffee-script-source (1.6.3)
+    compass (0.12.2)
+      chunky_png (~> 1.2)
+      fssm (>= 0.2.7)
+      sass (~> 3.1)
+    compass-rails (1.0.3)
+      compass (>= 0.12.2, < 0.14)
+    configurate (0.0.8)
+    connection_pool (1.2.0)
+    crack (0.4.1)
+      safe_yaml (~> 0.9.0)
+    cucumber (1.3.10)
+      builder (>= 2.1.2)
+      diff-lcs (>= 1.1.3)
+      gherkin (~> 2.12)
+      multi_json (>= 1.7.5, < 2.0)
+      multi_test (>= 0.0.2)
+    cucumber-rails (1.4.0)
+      capybara (>= 1.1.2)
+      cucumber (>= 1.2.0)
+      nokogiri (>= 1.5.0)
+      rails (>= 3.0.0)
+    database_cleaner (1.2.0)
+    devise (3.2.2)
+      bcrypt-ruby (~> 3.0)
+      orm_adapter (~> 0.1)
+      railties (>= 3.2.6, < 5)
+      thread_safe (~> 0.1)
+      warden (~> 1.2.3)
+    diff-lcs (1.2.5)
+    eco (1.0.0)
+      coffee-script
+      eco-source
+      execjs
+    eco-source (1.1.0.rc.1)
+    ejs (1.1.1)
+    entypo-rails (2.0.2)
+      railties (>= 3.1, <= 5)
+    erubis (2.7.0)
+    ethon (0.6.2)
+      ffi (>= 1.3.0)
+      mime-types (~> 1.18)
+    excon (0.31.0)
+    execjs (1.4.0)
+      multi_json (~> 1.0)
+    factory_girl (4.3.0)
+      activesupport (>= 3.0.0)
+    factory_girl_rails (4.3.0)
+      factory_girl (~> 4.3.0)
+      railties (>= 3.0.0)
+    faraday (0.8.9)
+      multipart-post (~> 1.2.0)
+    faraday_middleware (0.9.0)
+      faraday (>= 0.7.4, < 0.9)
+    ffi (1.9.3)
+    fixture_builder (0.3.6)
+      activerecord (>= 2)
+      activesupport (>= 2)
+    fog (1.19.0)
+      builder
+      excon (~> 0.31.0)
+      formatador (~> 0.2.0)
+      mime-types
+      multi_json (~> 1.0)
+      net-scp (~> 1.1)
+      net-ssh (>= 2.1.3)
+      nokogiri (~> 1.5)
+      ruby-hmac
+    font-awesome-rails (3.2.1.2)
+      railties (>= 3.2, < 5.0)
+    foreigner (1.6.1)
+      activerecord (>= 3.0.0)
+    foreman (0.62.0)
+      thor (>= 0.13.6)
+    formatador (0.2.4)
+    fssm (0.2.10)
+    fuubar (1.3.2)
+      rspec (>= 2.14.0, < 3.1.0)
+      ruby-progressbar (~> 1.3)
+    galetahub-simple_captcha (0.1.5)
+    gherkin (2.12.2)
+      multi_json (~> 1.3)
+    gon (4.1.1)
+      actionpack (>= 2.3.0)
+      json
+    guard (2.2.5)
+      formatador (>= 0.2.4)
+      listen (~> 2.1)
+      lumberjack (~> 1.0)
+      pry (>= 0.9.12)
+      thor (>= 0.18.1)
+    guard-cucumber (1.4.1)
+      cucumber (>= 1.2.0)
+      guard (>= 1.1.0)
+    guard-rspec (4.2.4)
+      guard (~> 2.1)
+      rspec (>= 2.14, < 4.0)
+    guard-spork (1.5.1)
+      childprocess (>= 0.2.3)
+      guard (>= 1.1)
+      spork (>= 0.8.4)
+    haml (4.0.5)
+      tilt
+    handlebars_assets (0.12.0)
+      execjs (>= 1.2.9)
+      sprockets (>= 2.0.3)
+      tilt
+    hashie (2.0.5)
+    hike (1.2.3)
+    http_accept_language (1.0.2)
+    httpauth (0.2.0)
+    i18n (0.6.9)
+    i18n-inflector (2.6.7)
+      i18n (>= 0.4.1)
+    i18n-inflector-rails (1.0.7)
+      actionpack (>= 3.0.0)
+      i18n-inflector (~> 2.6)
+      railties (>= 3.0.0)
+    jasmine (1.3.2)
+      jasmine-core (~> 1.3.1)
+      rack (~> 1.0)
+      rspec (>= 1.3.1)
+      selenium-webdriver (>= 0.1.3)
+    jasmine-core (1.3.1)
+    journey (1.0.4)
+    jquery-rails (2.1.4)
+      railties (>= 3.0, < 5.0)
+      thor (>= 0.14, < 2.0)
+    jquery-ui-rails (3.0.1)
+      jquery-rails
+      railties (>= 3.1.0)
+    json (1.8.1)
+    jwt (0.1.10)
+      multi_json (>= 1.5)
+    kaminari (0.15.1)
+      actionpack (>= 3.0.0)
+      activesupport (>= 3.0.0)
+    kgio (2.8.1)
+    listen (2.4.0)
+      celluloid (>= 0.15.2)
+      rb-fsevent (>= 0.9.3)
+      rb-inotify (>= 0.9)
+    lumberjack (1.0.4)
+    mail (2.5.4)
+      mime-types (~> 1.16)
+      treetop (~> 1.4.8)
+    markerb (1.0.1)
+      redcarpet (>= 2.0)
+    messagebus_ruby_api (1.0.3)
+    method_source (0.8.2)
+    mime-types (1.25.1)
+    mini_magick (3.7.0)
+      subexec (~> 0.2.1)
+    mini_portile (0.5.2)
+    mobile-fu (1.2.2)
+      rack-mobile-detect
+      rails
+    multi_json (1.8.4)
+    multi_test (0.0.3)
+    multipart-post (1.2.0)
+    mysql2 (0.3.14)
+    nested_form (0.3.2)
+    net-scp (1.1.2)
+      net-ssh (>= 2.6.5)
+    net-ssh (2.7.0)
+    nokogiri (1.6.1)
+      mini_portile (~> 0.5.0)
+    oauth (0.4.7)
+    oauth2 (0.8.1)
+      faraday (~> 0.8)
+      httpauth (~> 0.1)
+      jwt (~> 0.1.4)
+      multi_json (~> 1.0)
+      rack (~> 1.2)
+    omniauth (1.1.4)
+      hashie (>= 1.2, < 3)
+      rack
+    omniauth-facebook (1.6.0)
+      omniauth-oauth2 (~> 1.1)
+    omniauth-oauth (1.0.1)
+      oauth
+      omniauth (~> 1.0)
+    omniauth-oauth2 (1.1.1)
+      oauth2 (~> 0.8.0)
+      omniauth (~> 1.0)
+    omniauth-tumblr (1.1)
+      omniauth-oauth (~> 1.0)
+    omniauth-twitter (1.0.1)
+      multi_json (~> 1.3)
+      omniauth-oauth (~> 1.0)
+    omniauth-wordpress (0.2.0)
+      omniauth-oauth2 (~> 1.1.0)
+    opengraph_parser (0.2.3)
+      addressable
+      nokogiri
+    orm_adapter (0.5.0)
+    polyglot (0.3.4)
+    pry (0.9.12.4)
+      coderay (~> 1.0)
+      method_source (~> 0.8)
+      slop (~> 3.4)
+    rack (1.4.5)
+    rack-cache (1.2)
+      rack (>= 0.4)
+    rack-cors (0.2.8)
+      rack
+    rack-google-analytics (0.14.0)
+      actionpack
+      activesupport
+    rack-mobile-detect (0.4.0)
+      rack
+    rack-piwik (0.2.2)
+    rack-pjax (0.7.0)
+      nokogiri (~> 1.5)
+      rack (~> 1.3)
+    rack-protection (1.2.0)
+      rack
+    rack-rewrite (1.5.0)
+    rack-ssl (1.3.3)
+      rack
+    rack-test (0.6.2)
+      rack (>= 1.0)
+    rails (3.2.17)
+      actionmailer (= 3.2.17)
+      actionpack (= 3.2.17)
+      activerecord (= 3.2.17)
+      activeresource (= 3.2.17)
+      activesupport (= 3.2.17)
+      bundler (~> 1.0)
+      railties (= 3.2.17)
+    rails-i18n (0.7.4)
+      i18n (~> 0.5)
+    rails_admin (0.4.9)
+      bootstrap-sass (~> 2.2)
+      builder (~> 3.0)
+      coffee-rails (>= 3.1, < 5)
+      font-awesome-rails (~> 3.0)
+      haml (~> 4.0)
+      jquery-rails (>= 2.1, < 4)
+      jquery-ui-rails (~> 3.0)
+      kaminari (~> 0.14)
+      nested_form (~> 0.3)
+      rack-pjax (~> 0.6)
+      rails (~> 3.1)
+      remotipart (~> 1.0)
+      safe_yaml (~> 0.6)
+      sass-rails (~> 3.1)
+    rails_autolink (1.1.5)
+      rails (> 3.1)
+    railties (3.2.17)
+      actionpack (= 3.2.17)
+      activesupport (= 3.2.17)
+      rack-ssl (~> 1.3.2)
+      rake (>= 0.8.7)
+      rdoc (~> 3.4)
+      thor (>= 0.14.6, < 2.0)
+    raindrops (0.12.0)
+    rake (10.1.1)
+    rb-fsevent (0.9.4)
+    rb-inotify (0.9.3)
+    rdoc (3.12.2)
+      json (~> 1.4)
+    redcarpet (3.0.0)
+    redis (3.0.6)
+    redis-namespace (1.4.1)
+      redis (~> 3.0.4)
+    remotipart (1.2.1)
+    rmagick (2.13.2)
+    roxml (3.1.6)
+      activesupport (>= 2.3.0)
+      nokogiri (>= 1.3.3)
+    rspec (2.14.1)
+      rspec-core (~> 2.14.0)
+      rspec-expectations (~> 2.14.0)
+      rspec-mocks (~> 2.14.0)
+    rspec-core (2.14.7)
+    rspec-expectations (2.14.4)
+      diff-lcs (>= 1.1.3, < 2.0)
+    rspec-instafail (0.2.4)
+    rspec-mocks (2.14.4)
+    rspec-rails (2.14.1)
+      actionpack (>= 3.0)
+      activemodel (>= 3.0)
+      activesupport (>= 3.0)
+      railties (>= 3.0)
+      rspec-core (~> 2.14.0)
+      rspec-expectations (~> 2.14.0)
+      rspec-mocks (~> 2.14.0)
+    ruby-hmac (0.4.0)
+    ruby-oembed (0.8.9)
+    ruby-progressbar (1.4.0)
+    rubyzip (1.1.0)
+    safe_yaml (0.9.7)
+    sass (3.2.13)
+    sass-rails (3.2.6)
+      railties (~> 3.2.0)
+      sass (>= 3.1.10)
+      tilt (~> 1.3)
+    selenium-webdriver (2.39.0)
+      childprocess (>= 0.2.5)
+      multi_json (~> 1.0)
+      rubyzip (~> 1.0)
+      websocket (~> 1.0.4)
+    sidekiq (2.17.2)
+      celluloid (>= 0.15.2)
+      connection_pool (>= 1.0.0)
+      json
+      redis (>= 3.0.6)
+      redis-namespace (>= 1.3.1)
+    simple_oauth (0.2.0)
+    sinatra (1.3.3)
+      rack (~> 1.3, >= 1.3.6)
+      rack-protection (~> 1.2)
+      tilt (~> 1.3, >= 1.3.3)
+    sinon-rails (1.7.3)
+      railties (>= 3.1)
+    slop (3.4.7)
+    spork (1.0.0rc4)
+    sprockets (2.2.2)
+      hike (~> 1.2)
+      multi_json (~> 1.0)
+      rack (~> 1.0)
+      tilt (~> 1.1, != 1.3.0)
+    strong_parameters (0.2.2)
+      actionpack (~> 3.0)
+      activemodel (~> 3.0)
+      railties (~> 3.0)
+    subexec (0.2.3)
+    test_after_commit (0.2.2)
+    thor (0.18.1)
+    thread_safe (0.1.3)
+      atomic
+    tilt (1.4.1)
+    timecop (0.7.1)
+    timers (1.1.0)
+    treetop (1.4.15)
+      polyglot
+      polyglot (>= 0.3.1)
+    twitter (4.8.1)
+      faraday (~> 0.8, < 0.10)
+      multi_json (~> 1.0)
+      simple_oauth (~> 0.2)
+    typhoeus (0.6.7)
+      ethon (~> 0.6.2)
+    tzinfo (0.3.38)
+    uglifier (2.1.2)
+      execjs (>= 0.3.0)
+      multi_json (~> 1.0, >= 1.0.2)
+    unicorn (4.8.0)
+      kgio (~> 2.6)
+      rack
+      raindrops (~> 0.7)
+    warden (1.2.3)
+      rack (>= 1.0)
+    webmock (1.16.1)
+      addressable (>= 2.2.7)
+      crack (>= 0.3.2)
+    websocket (1.0.7)
+    will_paginate (3.0.5)
+    xpath (2.0.0)
+      nokogiri (~> 1.3)
+    zip-zip (0.2)
+      rubyzip (>= 1.0.0)
+
+PLATFORMS
+  ruby
+
+DEPENDENCIES
+  activerecord-import (= 0.3.1)
+  acts-as-taggable-on (= 2.4.1)
+  acts_as_api (= 0.4.2)
+  addressable (= 2.3.5)
+  asset_sync (= 1.0.0)
+  backbone-on-rails (= 1.1.0)
+  bootstrap-sass (= 2.2.2.0)
+  capybara (= 2.2.1)
+  carrierwave (= 0.9.0)
+  client_side_validations (= 3.2.6)
+  compass-rails (= 1.0.3)
+  configurate (= 0.0.8)
+  cucumber-rails (= 1.4.0)
+  database_cleaner (= 1.2.0)
+  devise (= 3.2.2)
+  entypo-rails
+  factory_girl_rails (= 4.3.0)
+  faraday (= 0.8.9)
+  faraday_middleware (= 0.9.0)
+  fixture_builder (= 0.3.6)
+  fog (= 1.19.0)
+  foreigner (= 1.6.1)
+  foreman (= 0.62)
+  fuubar (= 1.3.2)
+  galetahub-simple_captcha (= 0.1.5)
+  gon (= 4.1.1)
+  guard-cucumber (= 1.4.1)
+  guard-rspec (= 4.2.4)
+  guard-spork (= 1.5.1)
+  haml (= 4.0.5)
+  handlebars_assets (= 0.12.0)
+  http_accept_language (= 1.0.2)
+  i18n-inflector-rails (= 1.0.7)
+  jasmine (= 1.3.2)
+  jquery-rails (= 2.1.4)
+  json (= 1.8.1)
+  markerb (= 1.0.1)
+  messagebus_ruby_api (= 1.0.3)
+  mini_magick (= 3.7.0)
+  mobile-fu (= 1.2.2)
+  mysql2 (= 0.3.14)
+  nokogiri (= 1.6.1)
+  omniauth (= 1.1.4)
+  omniauth-facebook (= 1.6.0)
+  omniauth-tumblr (= 1.1)
+  omniauth-twitter (= 1.0.1)
+  omniauth-wordpress (= 0.2.0)
+  opengraph_parser (= 0.2.3)
+  rack-cors (= 0.2.8)
+  rack-google-analytics (= 0.14.0)
+  rack-piwik (= 0.2.2)
+  rack-protection (= 1.2)
+  rack-rewrite (= 1.5.0)
+  rack-ssl (= 1.3.3)
+  rails (= 3.2.17)
+  rails-i18n (= 0.7.4)
+  rails_admin (= 0.4.9)
+  rails_autolink (= 1.1.5)
+  rb-fsevent (= 0.9.4)
+  rb-inotify (= 0.9.3)
+  redcarpet (= 3.0.0)
+  remotipart (= 1.2.1)
+  rmagick (= 2.13.2)
+  roxml (= 3.1.6)
+  rspec-instafail (= 0.2.4)
+  rspec-rails (= 2.14.1)
+  ruby-oembed (= 0.8.9)
+  sass-rails (= 3.2.6)
+  selenium-webdriver (= 2.39.0)
+  sidekiq (= 2.17.2)
+  sinatra (= 1.3.3)
+  sinon-rails (= 1.7.3)
+  spork (= 1.0.0rc4)
+  strong_parameters
+  test_after_commit (= 0.2.2)
+  timecop (= 0.7.1)
+  twitter (= 4.8.1)
+  typhoeus (= 0.6.7)
+  uglifier (= 2.1.2)
+  unicorn (= 4.8.0)
+  webmock (= 1.16.1)
+  will_paginate (= 3.0.5)
+  zip-zip
diff --git a/debian/patches/loosen-activerecord-import-version.patch b/debian/patches/loosen-activerecord-import-version.patch
new file mode 100644
index 0000000..3928255
--- /dev/null
+++ b/debian/patches/loosen-activerecord-import-version.patch
@@ -0,0 +1,11 @@
+--- a/Gemfile
++++ b/Gemfile
+@@ -39,7 +39,7 @@
+ gem 'mysql2', '>= 0.3.14' if ENV['DB'] == 'all' || ENV['DB'] == 'mysql'
+ gem 'pg',     '0.17.1' if ENV['DB'] == 'all' || ENV['DB'] == 'postgres'
+ 
+-gem 'activerecord-import', '0.3.1'
++gem 'activerecord-import', '>= 0.3.1'
+ gem 'foreigner',           '1.6.1'
+ 
+ # File uploading
diff --git a/debian/patches/loosen-carrierwave-version.patch b/debian/patches/loosen-carrierwave-version.patch
new file mode 100644
index 0000000..54c8c8b
--- /dev/null
+++ b/debian/patches/loosen-carrierwave-version.patch
@@ -0,0 +1,11 @@
+--- a/Gemfile
++++ b/Gemfile
+@@ -44,7 +44,7 @@
+ 
+ # File uploading
+ 
+-gem 'carrierwave', '0.9.0'
++gem 'carrierwave', '>= 0.9.0'
+ gem 'fog',         '1.19.0'
+ gem 'mini_magick', '3.7.0'
+ gem 'remotipart',  '1.2.1'
diff --git a/debian/patches/loosen-devise-version.patch b/debian/patches/loosen-devise-version.patch
new file mode 100644
index 0000000..42ba0aa
--- /dev/null
+++ b/debian/patches/loosen-devise-version.patch
@@ -0,0 +1,11 @@
+--- a/Gemfile
++++ b/Gemfile
+@@ -13,7 +13,7 @@
+ 
+ # Authentication
+ 
+-gem 'devise', '3.2.2'
++gem 'devise', '>= 3.2.2'
+ 
+ # Captcha
+ 
diff --git a/debian/patches/loosen-fog-version.patch b/debian/patches/loosen-fog-version.patch
new file mode 100644
index 0000000..34dbab1
--- /dev/null
+++ b/debian/patches/loosen-fog-version.patch
@@ -0,0 +1,11 @@
+--- a/Gemfile
++++ b/Gemfile
+@@ -45,7 +45,7 @@
+ # File uploading
+ 
+ gem 'carrierwave', '>= 0.9.0'
+-gem 'fog',         '1.19.0'
++gem 'fog',         '>= 1.19.0'
+ gem 'mini_magick', '3.7.0'
+ gem 'remotipart',  '1.2.1'
+ 
diff --git a/debian/patches/loosen-http-accept-language-version.patch b/debian/patches/loosen-http-accept-language-version.patch
new file mode 100644
index 0000000..f57ab63
--- /dev/null
+++ b/debian/patches/loosen-http-accept-language-version.patch
@@ -0,0 +1,11 @@
+--- a/Gemfile
++++ b/Gemfile
+@@ -51,7 +51,7 @@
+ 
+ # Localization
+ 
+-gem 'http_accept_language', '1.0.2'
++gem 'http_accept_language', '>= 1.0.2'
+ gem 'i18n-inflector-rails', '1.0.7'
+ gem 'rails-i18n',           '0.7.4'
+ 
diff --git a/debian/patches/loosen-messagebus-ruby-api-version.patch b/debian/patches/loosen-messagebus-ruby-api-version.patch
new file mode 100644
index 0000000..b9fe642
--- /dev/null
+++ b/debian/patches/loosen-messagebus-ruby-api-version.patch
@@ -0,0 +1,11 @@
+--- a/Gemfile
++++ b/Gemfile
+@@ -58,7 +58,7 @@
+ # Mail
+ 
+ gem 'markerb',             '1.0.1'
+-gem 'messagebus_ruby_api', '1.0.3'
++gem 'messagebus_ruby_api', '>= 1.0.3'
+ 
+ # Parsing
+ 
diff --git a/debian/patches/loosen-mysql2-version.patch b/debian/patches/loosen-mysql2-version.patch
new file mode 100644
index 0000000..0232aa3
--- /dev/null
+++ b/debian/patches/loosen-mysql2-version.patch
@@ -0,0 +1,11 @@
+--- a/Gemfile
++++ b/Gemfile
+@@ -36,7 +36,7 @@
+ 
+ ENV['DB'] ||= 'mysql'
+ 
+-gem 'mysql2', '0.3.14' if ENV['DB'] == 'all' || ENV['DB'] == 'mysql'
++gem 'mysql2', '>= 0.3.14' if ENV['DB'] == 'all' || ENV['DB'] == 'mysql'
+ gem 'pg',     '0.17.1' if ENV['DB'] == 'all' || ENV['DB'] == 'postgres'
+ 
+ gem 'activerecord-import', '0.3.1'
diff --git a/debian/patches/loosen-rack-cors-version.patch b/debian/patches/loosen-rack-cors-version.patch
new file mode 100644
index 0000000..c812758
--- /dev/null
+++ b/debian/patches/loosen-rack-cors-version.patch
@@ -0,0 +1,11 @@
+--- a/Gemfile
++++ b/Gemfile
+@@ -30,7 +30,7 @@
+ 
+ # Cross-origin resource sharing
+ 
+-gem 'rack-cors', '0.2.8', :require => 'rack/cors'
++gem 'rack-cors', '>= 0.2.8', :require => 'rack/cors'
+ 
+ # Database
+ 
diff --git a/debian/patches/loosen-rails-i18n-version.patch b/debian/patches/loosen-rails-i18n-version.patch
new file mode 100644
index 0000000..38fe788
--- /dev/null
+++ b/debian/patches/loosen-rails-i18n-version.patch
@@ -0,0 +1,11 @@
+--- a/Gemfile
++++ b/Gemfile
+@@ -53,7 +53,7 @@
+ 
+ gem 'http_accept_language', '>= 1.0.2'
+ gem 'i18n-inflector-rails', '1.0.7'
+-gem 'rails-i18n',           '0.7.4'
++gem 'rails-i18n',           '>= 0.7.4'
+ 
+ # Mail
+ 
diff --git a/debian/patches/loosen-sidekiq-version.patch b/debian/patches/loosen-sidekiq-version.patch
new file mode 100644
index 0000000..001fda6
--- /dev/null
+++ b/debian/patches/loosen-sidekiq-version.patch
@@ -0,0 +1,11 @@
+--- a/Gemfile
++++ b/Gemfile
+@@ -21,7 +21,7 @@
+ 
+ # Background processing
+ 
+-gem 'sidekiq', '2.17.2'
++gem 'sidekiq', '>= 2.17.2'
+ gem 'sinatra', '1.3.3'
+ 
+ # Configuration
diff --git a/debian/patches/loosen-sinatra-version.patch b/debian/patches/loosen-sinatra-version.patch
new file mode 100644
index 0000000..ab63c2d
--- /dev/null
+++ b/debian/patches/loosen-sinatra-version.patch
@@ -0,0 +1,11 @@
+--- a/Gemfile
++++ b/Gemfile
+@@ -22,7 +22,7 @@
+ # Background processing
+ 
+ gem 'sidekiq', '>= 2.17.2'
+-gem 'sinatra', '1.3.3'
++gem 'sinatra', '>= 1.3.3'
+ 
+ # Configuration
+ 
diff --git a/debian/patches/loosen-unicorn-version-dep.patch b/debian/patches/loosen-unicorn-version-dep.patch
new file mode 100644
index 0000000..e6ac8ca
--- /dev/null
+++ b/debian/patches/loosen-unicorn-version-dep.patch
@@ -0,0 +1,11 @@
+--- a/Gemfile
++++ b/Gemfile
+@@ -4,7 +4,7 @@
+ 
+ # Appserver
+ 
+-gem 'unicorn', '4.8.0', :require => false
++gem 'unicorn', '>= 4.8.0', :require => false
+ 
+ # API and JSON
+ 
diff --git a/debian/patches/remove-development-test-from-gemfile.patch b/debian/patches/remove-development-test-from-gemfile.patch
new file mode 100644
index 0000000..6cc7be0
--- /dev/null
+++ b/debian/patches/remove-development-test-from-gemfile.patch
@@ -0,0 +1,58 @@
+--- a/Gemfile
++++ b/Gemfile
+@@ -165,55 +165,3 @@
+ 
+   gem 'asset_sync', '1.0.0', :require => false
+ end
+-
+-group :development do
+-  # Comparison images
+-
+-  gem 'rmagick', '2.13.2', :require => false
+-
+-  # Automatic test runs
+-
+-  gem 'guard-cucumber', '1.4.1'
+-  gem 'guard-rspec',    '4.2.4'
+-  gem 'rb-fsevent',     '0.9.4', :require => false
+-  gem 'rb-inotify',     '0.9.3', :require => false
+-
+-  # Preloading environment
+-
+-  gem 'guard-spork', '1.5.1'
+-  gem 'spork',       '1.0.0rc4'
+-end
+-
+-group :test do
+-  # RSpec (unit tests, some integration tests)
+-
+-  gem 'fixture_builder',   '0.3.6'
+-  gem 'fuubar',            '1.3.2'
+-  gem 'rspec-instafail',   '0.2.4', :require => false
+-  gem 'test_after_commit', '0.2.2'
+-
+-  # Cucumber (integration tests)
+-
+-  gem 'capybara',           '2.2.1'
+-  gem 'database_cleaner',   '1.2.0'
+-  gem 'selenium-webdriver', '2.39.0'
+-
+-  # General helpers
+-
+-  gem 'factory_girl_rails', '4.3.0'
+-  gem 'timecop',            '0.7.1'
+-  gem 'webmock',            '1.16.1', :require => false
+-end
+-
+-
+-group :development, :test do
+-  # RSpec (unit tests, some integration tests)
+-  gem "rspec-rails",     '2.14.1'
+-
+-  # Cucumber (integration tests)
+-  gem 'cucumber-rails',     '1.4.0', :require => false
+-
+-  # Jasmine (client side application tests (JS))
+-  gem 'jasmine', '1.3.2'
+-  gem 'sinon-rails',	    '1.7.3'
+-end
diff --git a/debian/patches/remove-gemfile-lock.patch b/debian/patches/remove-gemfile-lock.patch
new file mode 100644
index 0000000..989d87c
--- /dev/null
+++ b/debian/patches/remove-gemfile-lock.patch
@@ -0,0 +1,530 @@
+--- a/Gemfile.lock
++++ /dev/null
+@@ -1,527 +0,0 @@
+-GEM
+-  remote: https://rubygems.org/
+-  specs:
+-    actionmailer (3.2.17)
+-      actionpack (= 3.2.17)
+-      mail (~> 2.5.4)
+-    actionpack (3.2.17)
+-      activemodel (= 3.2.17)
+-      activesupport (= 3.2.17)
+-      builder (~> 3.0.0)
+-      erubis (~> 2.7.0)
+-      journey (~> 1.0.4)
+-      rack (~> 1.4.5)
+-      rack-cache (~> 1.2)
+-      rack-test (~> 0.6.1)
+-      sprockets (~> 2.2.1)
+-    activemodel (3.2.17)
+-      activesupport (= 3.2.17)
+-      builder (~> 3.0.0)
+-    activerecord (3.2.17)
+-      activemodel (= 3.2.17)
+-      activesupport (= 3.2.17)
+-      arel (~> 3.0.2)
+-      tzinfo (~> 0.3.29)
+-    activerecord-import (0.3.1)
+-      activerecord (~> 3.0)
+-    activeresource (3.2.17)
+-      activemodel (= 3.2.17)
+-      activesupport (= 3.2.17)
+-    activesupport (3.2.17)
+-      i18n (~> 0.6, >= 0.6.4)
+-      multi_json (~> 1.0)
+-    acts-as-taggable-on (2.4.1)
+-      rails (>= 3, < 5)
+-    acts_as_api (0.4.2)
+-      activemodel (>= 3.0.0)
+-      activesupport (>= 3.0.0)
+-      rack (>= 1.1.0)
+-    addressable (2.3.5)
+-    arel (3.0.3)
+-    asset_sync (1.0.0)
+-      activemodel
+-      fog (>= 1.8.0)
+-    atomic (1.1.14)
+-    backbone-on-rails (1.1.0.0)
+-      eco
+-      ejs
+-      jquery-rails
+-      rails (>= 3.1)
+-    bcrypt-ruby (3.1.2)
+-    bootstrap-sass (2.2.2.0)
+-      sass (~> 3.2)
+-    builder (3.0.4)
+-    capybara (2.2.1)
+-      mime-types (>= 1.16)
+-      nokogiri (>= 1.3.3)
+-      rack (>= 1.0.0)
+-      rack-test (>= 0.5.4)
+-      xpath (~> 2.0)
+-    carrierwave (0.9.0)
+-      activemodel (>= 3.2.0)
+-      activesupport (>= 3.2.0)
+-      json (>= 1.7)
+-    celluloid (0.15.2)
+-      timers (~> 1.1.0)
+-    childprocess (0.3.9)
+-      ffi (~> 1.0, >= 1.0.11)
+-    chunky_png (1.2.9)
+-    client_side_validations (3.2.6)
+-    coderay (1.1.0)
+-    coffee-rails (3.2.2)
+-      coffee-script (>= 2.2.0)
+-      railties (~> 3.2.0)
+-    coffee-script (2.2.0)
+-      coffee-script-source
+-      execjs
+-    coffee-script-source (1.6.3)
+-    compass (0.12.2)
+-      chunky_png (~> 1.2)
+-      fssm (>= 0.2.7)
+-      sass (~> 3.1)
+-    compass-rails (1.0.3)
+-      compass (>= 0.12.2, < 0.14)
+-    configurate (0.0.8)
+-    connection_pool (1.2.0)
+-    crack (0.4.1)
+-      safe_yaml (~> 0.9.0)
+-    cucumber (1.3.10)
+-      builder (>= 2.1.2)
+-      diff-lcs (>= 1.1.3)
+-      gherkin (~> 2.12)
+-      multi_json (>= 1.7.5, < 2.0)
+-      multi_test (>= 0.0.2)
+-    cucumber-rails (1.4.0)
+-      capybara (>= 1.1.2)
+-      cucumber (>= 1.2.0)
+-      nokogiri (>= 1.5.0)
+-      rails (>= 3.0.0)
+-    database_cleaner (1.2.0)
+-    devise (3.2.2)
+-      bcrypt-ruby (~> 3.0)
+-      orm_adapter (~> 0.1)
+-      railties (>= 3.2.6, < 5)
+-      thread_safe (~> 0.1)
+-      warden (~> 1.2.3)
+-    diff-lcs (1.2.5)
+-    eco (1.0.0)
+-      coffee-script
+-      eco-source
+-      execjs
+-    eco-source (1.1.0.rc.1)
+-    ejs (1.1.1)
+-    entypo-rails (2.0.2)
+-      railties (>= 3.1, <= 5)
+-    erubis (2.7.0)
+-    ethon (0.6.2)
+-      ffi (>= 1.3.0)
+-      mime-types (~> 1.18)
+-    excon (0.31.0)
+-    execjs (1.4.0)
+-      multi_json (~> 1.0)
+-    factory_girl (4.3.0)
+-      activesupport (>= 3.0.0)
+-    factory_girl_rails (4.3.0)
+-      factory_girl (~> 4.3.0)
+-      railties (>= 3.0.0)
+-    faraday (0.8.9)
+-      multipart-post (~> 1.2.0)
+-    faraday_middleware (0.9.0)
+-      faraday (>= 0.7.4, < 0.9)
+-    ffi (1.9.3)
+-    fixture_builder (0.3.6)
+-      activerecord (>= 2)
+-      activesupport (>= 2)
+-    fog (1.19.0)
+-      builder
+-      excon (~> 0.31.0)
+-      formatador (~> 0.2.0)
+-      mime-types
+-      multi_json (~> 1.0)
+-      net-scp (~> 1.1)
+-      net-ssh (>= 2.1.3)
+-      nokogiri (~> 1.5)
+-      ruby-hmac
+-    font-awesome-rails (3.2.1.2)
+-      railties (>= 3.2, < 5.0)
+-    foreigner (1.6.1)
+-      activerecord (>= 3.0.0)
+-    foreman (0.62.0)
+-      thor (>= 0.13.6)
+-    formatador (0.2.4)
+-    fssm (0.2.10)
+-    fuubar (1.3.2)
+-      rspec (>= 2.14.0, < 3.1.0)
+-      ruby-progressbar (~> 1.3)
+-    galetahub-simple_captcha (0.1.5)
+-    gherkin (2.12.2)
+-      multi_json (~> 1.3)
+-    gon (4.1.1)
+-      actionpack (>= 2.3.0)
+-      json
+-    guard (2.2.5)
+-      formatador (>= 0.2.4)
+-      listen (~> 2.1)
+-      lumberjack (~> 1.0)
+-      pry (>= 0.9.12)
+-      thor (>= 0.18.1)
+-    guard-cucumber (1.4.1)
+-      cucumber (>= 1.2.0)
+-      guard (>= 1.1.0)
+-    guard-rspec (4.2.4)
+-      guard (~> 2.1)
+-      rspec (>= 2.14, < 4.0)
+-    guard-spork (1.5.1)
+-      childprocess (>= 0.2.3)
+-      guard (>= 1.1)
+-      spork (>= 0.8.4)
+-    haml (4.0.5)
+-      tilt
+-    handlebars_assets (0.12.0)
+-      execjs (>= 1.2.9)
+-      sprockets (>= 2.0.3)
+-      tilt
+-    hashie (2.0.5)
+-    hike (1.2.3)
+-    http_accept_language (1.0.2)
+-    httpauth (0.2.0)
+-    i18n (0.6.9)
+-    i18n-inflector (2.6.7)
+-      i18n (>= 0.4.1)
+-    i18n-inflector-rails (1.0.7)
+-      actionpack (>= 3.0.0)
+-      i18n-inflector (~> 2.6)
+-      railties (>= 3.0.0)
+-    jasmine (1.3.2)
+-      jasmine-core (~> 1.3.1)
+-      rack (~> 1.0)
+-      rspec (>= 1.3.1)
+-      selenium-webdriver (>= 0.1.3)
+-    jasmine-core (1.3.1)
+-    journey (1.0.4)
+-    jquery-rails (2.1.4)
+-      railties (>= 3.0, < 5.0)
+-      thor (>= 0.14, < 2.0)
+-    jquery-ui-rails (3.0.1)
+-      jquery-rails
+-      railties (>= 3.1.0)
+-    json (1.8.1)
+-    jwt (0.1.10)
+-      multi_json (>= 1.5)
+-    kaminari (0.15.1)
+-      actionpack (>= 3.0.0)
+-      activesupport (>= 3.0.0)
+-    kgio (2.8.1)
+-    listen (2.4.0)
+-      celluloid (>= 0.15.2)
+-      rb-fsevent (>= 0.9.3)
+-      rb-inotify (>= 0.9)
+-    lumberjack (1.0.4)
+-    mail (2.5.4)
+-      mime-types (~> 1.16)
+-      treetop (~> 1.4.8)
+-    markerb (1.0.1)
+-      redcarpet (>= 2.0)
+-    messagebus_ruby_api (1.0.3)
+-    method_source (0.8.2)
+-    mime-types (1.25.1)
+-    mini_magick (3.7.0)
+-      subexec (~> 0.2.1)
+-    mini_portile (0.5.2)
+-    mobile-fu (1.2.2)
+-      rack-mobile-detect
+-      rails
+-    multi_json (1.8.4)
+-    multi_test (0.0.3)
+-    multipart-post (1.2.0)
+-    mysql2 (0.3.14)
+-    nested_form (0.3.2)
+-    net-scp (1.1.2)
+-      net-ssh (>= 2.6.5)
+-    net-ssh (2.7.0)
+-    nokogiri (1.6.1)
+-      mini_portile (~> 0.5.0)
+-    oauth (0.4.7)
+-    oauth2 (0.8.1)
+-      faraday (~> 0.8)
+-      httpauth (~> 0.1)
+-      jwt (~> 0.1.4)
+-      multi_json (~> 1.0)
+-      rack (~> 1.2)
+-    omniauth (1.1.4)
+-      hashie (>= 1.2, < 3)
+-      rack
+-    omniauth-facebook (1.6.0)
+-      omniauth-oauth2 (~> 1.1)
+-    omniauth-oauth (1.0.1)
+-      oauth
+-      omniauth (~> 1.0)
+-    omniauth-oauth2 (1.1.1)
+-      oauth2 (~> 0.8.0)
+-      omniauth (~> 1.0)
+-    omniauth-tumblr (1.1)
+-      omniauth-oauth (~> 1.0)
+-    omniauth-twitter (1.0.1)
+-      multi_json (~> 1.3)
+-      omniauth-oauth (~> 1.0)
+-    omniauth-wordpress (0.2.0)
+-      omniauth-oauth2 (~> 1.1.0)
+-    opengraph_parser (0.2.3)
+-      addressable
+-      nokogiri
+-    orm_adapter (0.5.0)
+-    polyglot (0.3.4)
+-    pry (0.9.12.4)
+-      coderay (~> 1.0)
+-      method_source (~> 0.8)
+-      slop (~> 3.4)
+-    rack (1.4.5)
+-    rack-cache (1.2)
+-      rack (>= 0.4)
+-    rack-cors (0.2.8)
+-      rack
+-    rack-google-analytics (0.14.0)
+-      actionpack
+-      activesupport
+-    rack-mobile-detect (0.4.0)
+-      rack
+-    rack-piwik (0.2.2)
+-    rack-pjax (0.7.0)
+-      nokogiri (~> 1.5)
+-      rack (~> 1.3)
+-    rack-protection (1.2.0)
+-      rack
+-    rack-rewrite (1.5.0)
+-    rack-ssl (1.3.3)
+-      rack
+-    rack-test (0.6.2)
+-      rack (>= 1.0)
+-    rails (3.2.17)
+-      actionmailer (= 3.2.17)
+-      actionpack (= 3.2.17)
+-      activerecord (= 3.2.17)
+-      activeresource (= 3.2.17)
+-      activesupport (= 3.2.17)
+-      bundler (~> 1.0)
+-      railties (= 3.2.17)
+-    rails-i18n (0.7.4)
+-      i18n (~> 0.5)
+-    rails_admin (0.4.9)
+-      bootstrap-sass (~> 2.2)
+-      builder (~> 3.0)
+-      coffee-rails (>= 3.1, < 5)
+-      font-awesome-rails (~> 3.0)
+-      haml (~> 4.0)
+-      jquery-rails (>= 2.1, < 4)
+-      jquery-ui-rails (~> 3.0)
+-      kaminari (~> 0.14)
+-      nested_form (~> 0.3)
+-      rack-pjax (~> 0.6)
+-      rails (~> 3.1)
+-      remotipart (~> 1.0)
+-      safe_yaml (~> 0.6)
+-      sass-rails (~> 3.1)
+-    rails_autolink (1.1.5)
+-      rails (> 3.1)
+-    railties (3.2.17)
+-      actionpack (= 3.2.17)
+-      activesupport (= 3.2.17)
+-      rack-ssl (~> 1.3.2)
+-      rake (>= 0.8.7)
+-      rdoc (~> 3.4)
+-      thor (>= 0.14.6, < 2.0)
+-    raindrops (0.12.0)
+-    rake (10.1.1)
+-    rb-fsevent (0.9.4)
+-    rb-inotify (0.9.3)
+-    rdoc (3.12.2)
+-      json (~> 1.4)
+-    redcarpet (3.0.0)
+-    redis (3.0.6)
+-    redis-namespace (1.4.1)
+-      redis (~> 3.0.4)
+-    remotipart (1.2.1)
+-    rmagick (2.13.2)
+-    roxml (3.1.6)
+-      activesupport (>= 2.3.0)
+-      nokogiri (>= 1.3.3)
+-    rspec (2.14.1)
+-      rspec-core (~> 2.14.0)
+-      rspec-expectations (~> 2.14.0)
+-      rspec-mocks (~> 2.14.0)
+-    rspec-core (2.14.7)
+-    rspec-expectations (2.14.4)
+-      diff-lcs (>= 1.1.3, < 2.0)
+-    rspec-instafail (0.2.4)
+-    rspec-mocks (2.14.4)
+-    rspec-rails (2.14.1)
+-      actionpack (>= 3.0)
+-      activemodel (>= 3.0)
+-      activesupport (>= 3.0)
+-      railties (>= 3.0)
+-      rspec-core (~> 2.14.0)
+-      rspec-expectations (~> 2.14.0)
+-      rspec-mocks (~> 2.14.0)
+-    ruby-hmac (0.4.0)
+-    ruby-oembed (0.8.9)
+-    ruby-progressbar (1.4.0)
+-    rubyzip (1.1.0)
+-    safe_yaml (0.9.7)
+-    sass (3.2.13)
+-    sass-rails (3.2.6)
+-      railties (~> 3.2.0)
+-      sass (>= 3.1.10)
+-      tilt (~> 1.3)
+-    selenium-webdriver (2.39.0)
+-      childprocess (>= 0.2.5)
+-      multi_json (~> 1.0)
+-      rubyzip (~> 1.0)
+-      websocket (~> 1.0.4)
+-    sidekiq (2.17.2)
+-      celluloid (>= 0.15.2)
+-      connection_pool (>= 1.0.0)
+-      json
+-      redis (>= 3.0.6)
+-      redis-namespace (>= 1.3.1)
+-    simple_oauth (0.2.0)
+-    sinatra (1.3.3)
+-      rack (~> 1.3, >= 1.3.6)
+-      rack-protection (~> 1.2)
+-      tilt (~> 1.3, >= 1.3.3)
+-    sinon-rails (1.7.3)
+-      railties (>= 3.1)
+-    slop (3.4.7)
+-    spork (1.0.0rc4)
+-    sprockets (2.2.2)
+-      hike (~> 1.2)
+-      multi_json (~> 1.0)
+-      rack (~> 1.0)
+-      tilt (~> 1.1, != 1.3.0)
+-    strong_parameters (0.2.2)
+-      actionpack (~> 3.0)
+-      activemodel (~> 3.0)
+-      railties (~> 3.0)
+-    subexec (0.2.3)
+-    test_after_commit (0.2.2)
+-    thor (0.18.1)
+-    thread_safe (0.1.3)
+-      atomic
+-    tilt (1.4.1)
+-    timecop (0.7.1)
+-    timers (1.1.0)
+-    treetop (1.4.15)
+-      polyglot
+-      polyglot (>= 0.3.1)
+-    twitter (4.8.1)
+-      faraday (~> 0.8, < 0.10)
+-      multi_json (~> 1.0)
+-      simple_oauth (~> 0.2)
+-    typhoeus (0.6.7)
+-      ethon (~> 0.6.2)
+-    tzinfo (0.3.38)
+-    uglifier (2.1.2)
+-      execjs (>= 0.3.0)
+-      multi_json (~> 1.0, >= 1.0.2)
+-    unicorn (4.8.0)
+-      kgio (~> 2.6)
+-      rack
+-      raindrops (~> 0.7)
+-    warden (1.2.3)
+-      rack (>= 1.0)
+-    webmock (1.16.1)
+-      addressable (>= 2.2.7)
+-      crack (>= 0.3.2)
+-    websocket (1.0.7)
+-    will_paginate (3.0.5)
+-    xpath (2.0.0)
+-      nokogiri (~> 1.3)
+-    zip-zip (0.2)
+-      rubyzip (>= 1.0.0)
+-
+-PLATFORMS
+-  ruby
+-
+-DEPENDENCIES
+-  activerecord-import (= 0.3.1)
+-  acts-as-taggable-on (= 2.4.1)
+-  acts_as_api (= 0.4.2)
+-  addressable (= 2.3.5)
+-  asset_sync (= 1.0.0)
+-  backbone-on-rails (= 1.1.0)
+-  bootstrap-sass (= 2.2.2.0)
+-  capybara (= 2.2.1)
+-  carrierwave (= 0.9.0)
+-  client_side_validations (= 3.2.6)
+-  compass-rails (= 1.0.3)
+-  configurate (= 0.0.8)
+-  cucumber-rails (= 1.4.0)
+-  database_cleaner (= 1.2.0)
+-  devise (= 3.2.2)
+-  entypo-rails
+-  factory_girl_rails (= 4.3.0)
+-  faraday (= 0.8.9)
+-  faraday_middleware (= 0.9.0)
+-  fixture_builder (= 0.3.6)
+-  fog (= 1.19.0)
+-  foreigner (= 1.6.1)
+-  foreman (= 0.62)
+-  fuubar (= 1.3.2)
+-  galetahub-simple_captcha (= 0.1.5)
+-  gon (= 4.1.1)
+-  guard-cucumber (= 1.4.1)
+-  guard-rspec (= 4.2.4)
+-  guard-spork (= 1.5.1)
+-  haml (= 4.0.5)
+-  handlebars_assets (= 0.12.0)
+-  http_accept_language (= 1.0.2)
+-  i18n-inflector-rails (= 1.0.7)
+-  jasmine (= 1.3.2)
+-  jquery-rails (= 2.1.4)
+-  json (= 1.8.1)
+-  markerb (= 1.0.1)
+-  messagebus_ruby_api (= 1.0.3)
+-  mini_magick (= 3.7.0)
+-  mobile-fu (= 1.2.2)
+-  mysql2 (= 0.3.14)
+-  nokogiri (= 1.6.1)
+-  omniauth (= 1.1.4)
+-  omniauth-facebook (= 1.6.0)
+-  omniauth-tumblr (= 1.1)
+-  omniauth-twitter (= 1.0.1)
+-  omniauth-wordpress (= 0.2.0)
+-  opengraph_parser (= 0.2.3)
+-  rack-cors (= 0.2.8)
+-  rack-google-analytics (= 0.14.0)
+-  rack-piwik (= 0.2.2)
+-  rack-protection (= 1.2)
+-  rack-rewrite (= 1.5.0)
+-  rack-ssl (= 1.3.3)
+-  rails (= 3.2.17)
+-  rails-i18n (= 0.7.4)
+-  rails_admin (= 0.4.9)
+-  rails_autolink (= 1.1.5)
+-  rb-fsevent (= 0.9.4)
+-  rb-inotify (= 0.9.3)
+-  redcarpet (= 3.0.0)
+-  remotipart (= 1.2.1)
+-  rmagick (= 2.13.2)
+-  roxml (= 3.1.6)
+-  rspec-instafail (= 0.2.4)
+-  rspec-rails (= 2.14.1)
+-  ruby-oembed (= 0.8.9)
+-  sass-rails (= 3.2.6)
+-  selenium-webdriver (= 2.39.0)
+-  sidekiq (= 2.17.2)
+-  sinatra (= 1.3.3)
+-  sinon-rails (= 1.7.3)
+-  spork (= 1.0.0rc4)
+-  strong_parameters
+-  test_after_commit (= 0.2.2)
+-  timecop (= 0.7.1)
+-  twitter (= 4.8.1)
+-  typhoeus (= 0.6.7)
+-  uglifier (= 2.1.2)
+-  unicorn (= 4.8.0)
+-  webmock (= 1.16.1)
+-  will_paginate (= 3.0.5)
+-  zip-zip
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..c42b333
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1,14 @@
+remove-development-test-from-gemfile.patch
+remove-gemfile-lock.patch
+loosen-unicorn-version-dep.patch
+loosen-devise-version.patch
+loosen-sidekiq-version.patch
+loosen-sinatra-version.patch
+loosen-rack-cors-version.patch
+loosen-mysql2-version.patch
+loosen-activerecord-import-version.patch
+loosen-carrierwave-version.patch
+loosen-fog-version.patch
+loosen-http-accept-language-version.patch
+loosen-rails-i18n-version.patch
+loosen-messagebus-ruby-api-version.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/diaspora.git



More information about the Pkg-ruby-extras-commits mailing list