fix a bunch of precompiled-asset-missing errors
2
Gemfile
|
@ -18,8 +18,6 @@ gem 'RocketAMF', :git => 'git://github.com/rubyamf/rocketamf.git'
|
|||
gem 'msgpack', '~> 0.5.3'
|
||||
gem 'openneo-auth-signatory', '~> 0.1.0'
|
||||
|
||||
gem 'jammit', '~> 0.6.5'
|
||||
|
||||
gem 'airbrake', '~> 3.1.8'
|
||||
|
||||
gem 'addressable', :require => ['addressable/template', 'addressable/uri']
|
||||
|
|
10
Gemfile.lock
|
@ -75,10 +75,6 @@ GIT
|
|||
GEM
|
||||
remote: http://rubygems.org/
|
||||
specs:
|
||||
POpen4 (0.1.4)
|
||||
Platform (>= 0.4.0)
|
||||
open4
|
||||
Platform (0.4.0)
|
||||
actionmailer (3.2.12)
|
||||
actionpack (= 3.2.12)
|
||||
mail (~> 2.4.4)
|
||||
|
@ -161,8 +157,6 @@ GEM
|
|||
hike (1.2.1)
|
||||
http_parser.rb (0.5.3)
|
||||
i18n (0.6.4)
|
||||
jammit (0.6.5)
|
||||
yui-compressor (>= 0.9.3)
|
||||
journey (1.0.4)
|
||||
json (1.7.7)
|
||||
mail (2.4.4)
|
||||
|
@ -181,7 +175,6 @@ GEM
|
|||
net-ssh (2.6.6)
|
||||
newrelic_rpm (3.5.8.70)
|
||||
nokogiri (1.5.6)
|
||||
open4 (1.3.0)
|
||||
openneo-auth-signatory (0.1.0)
|
||||
ruby-hmac
|
||||
orm_adapter (0.4.0)
|
||||
|
@ -297,8 +290,6 @@ GEM
|
|||
chronic (~> 0.6.3)
|
||||
will_paginate (3.0.4)
|
||||
yard (0.8.5.2)
|
||||
yui-compressor (0.9.6)
|
||||
POpen4 (>= 0.1.4)
|
||||
|
||||
PLATFORMS
|
||||
ruby
|
||||
|
@ -321,7 +312,6 @@ DEPENDENCIES
|
|||
globalize3!
|
||||
haml (~> 4.0.0)
|
||||
http_accept_language!
|
||||
jammit (~> 0.6.5)
|
||||
json (~> 1.7.7)
|
||||
memcache-client (~> 1.8.5)
|
||||
mini_magick (~> 3.4)
|
||||
|
|
Before Width: | Height: | Size: 127 B After Width: | Height: | Size: 127 B |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 139 B After Width: | Height: | Size: 139 B |
Before Width: | Height: | Size: 96 B After Width: | Height: | Size: 96 B |
Before Width: | Height: | Size: 153 B After Width: | Height: | Size: 153 B |
Before Width: | Height: | Size: 105 B After Width: | Height: | Size: 105 B |
Before Width: | Height: | Size: 124 B After Width: | Height: | Size: 124 B |
Before Width: | Height: | Size: 165 B After Width: | Height: | Size: 165 B |
Before Width: | Height: | Size: 119 B After Width: | Height: | Size: 119 B |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 5.2 KiB After Width: | Height: | Size: 5.2 KiB |
Before Width: | Height: | Size: 5.2 KiB After Width: | Height: | Size: 5.2 KiB |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
|
@ -119,7 +119,8 @@
|
|||
#no-assets-full-message= t '.sidebar.closet.no_data.description'
|
||||
|
||||
%script#sharing-html-image-template{:type => 'text/x-jquery-tmpl'}
|
||||
= link_to image_tag('${image_url}'), '${permalink}'
|
||||
= link_to '${permalink}' do
|
||||
%img{:src => '${image_url}'}
|
||||
|
||||
%script#sharing-html-text-template{:type => 'text/x-jquery-tmpl'}
|
||||
= link_to t('app_name'), '${permalink}'
|
||||
|
@ -212,5 +213,6 @@
|
|||
|
||||
- content_for :javascripts do
|
||||
= include_javascript_libraries :jquery, :swfobject, :jquery_tmpl
|
||||
= include_javascripts :edit_outfit_package
|
||||
= javascript_include_tag 'ajax_auth', 'jquery.jgrowl', 'wardrobe',
|
||||
'outfits/edit'
|
||||
|
||||
|
|
|
@ -102,5 +102,4 @@
|
|||
|
||||
- content_for :javascripts do
|
||||
= include_javascript_libraries :jquery, :jquery_tmpl
|
||||
= include_javascripts :new_outfit_package
|
||||
|
||||
= javascript_include_tag 'jquery.timeago', 'pet_query', 'outfits/new'
|
|
@ -22,5 +22,4 @@
|
|||
:javascript
|
||||
var INITIAL_OUTFIT_DATA = #{safely_to_json @outfit};
|
||||
= include_javascript_libraries :jquery, :swfobject
|
||||
= include_javascripts :show_outfit_package
|
||||
|
||||
= javascript_include_tag 'wardrobe', 'outfits/show'
|
|
@ -79,4 +79,4 @@
|
|||
|
||||
- content_for :javascripts do
|
||||
= include_javascript_libraries :jquery, :jquery_tmpl
|
||||
= include_javascripts :bulk_pets_package
|
||||
= javascript_include_tag 'ajax_auth', 'pets/bulk'
|
||||
|
|
|
@ -48,6 +48,7 @@ module OpenneoImpressItems
|
|||
config.assets.enabled = true
|
||||
config.assets.version = '1.0'
|
||||
config.assets.paths << Rails.root.join('app', 'assets', 'fonts')
|
||||
config.assets.precompile << '*.js'
|
||||
config.assets.initialize_on_precompile = false
|
||||
end
|
||||
end
|
||||
|
|
|
@ -1,22 +0,0 @@
|
|||
package_assets: off
|
||||
embed_assets: on
|
||||
|
||||
javascripts:
|
||||
bulk_pets_package:
|
||||
- public/javascripts/ajax_auth.js
|
||||
- public/javascripts/pets/bulk.js
|
||||
|
||||
edit_outfit_package:
|
||||
- public/javascripts/ajax_auth.js
|
||||
- public/javascripts/jquery.jgrowl.js
|
||||
- public/javascripts/wardrobe.js
|
||||
- public/javascripts/outfits/edit.js
|
||||
|
||||
new_outfit_package:
|
||||
- public/javascripts/jquery.timeago.js
|
||||
- public/javascripts/pet_query.js
|
||||
- public/javascripts/outfits/new.js
|
||||
|
||||
show_outfit_package:
|
||||
- public/javascripts/wardrobe.js
|
||||
- public/javascripts/outfits/show.js
|
BIN
public/assets/Delicious-Bold.otf
Normal file
BIN
public/assets/Delicious-Heavy.otf
Normal file
BIN
public/assets/Delicious-Italic.otf
Normal file
BIN
public/assets/Delicious-Roman.otf
Normal file
|
@ -0,0 +1 @@
|
|||
(function(){var e=$("meta[name=csrf-param]").attr("content"),t=$("meta[name=csrf-token]").attr("content"),n={};n[e]=t,$.ajaxSetup({data:n})})();
|
BIN
public/assets/ajax_auth-8946c462c538d34aecd58e622cb0091b.js.gz
Normal file
1
public/assets/ajax_auth.js
Normal file
|
@ -0,0 +1 @@
|
|||
(function(){var e=$("meta[name=csrf-param]").attr("content"),t=$("meta[name=csrf-token]").attr("content"),n={};n[e]=t,$.ajaxSetup({data:n})})();
|
BIN
public/assets/ajax_auth.js.gz
Normal file
BIN
public/assets/alert-overlay-1761c70e8456d8ddae4e0caca3a58c21.png
Normal file
After Width: | Height: | Size: 135 B |
BIN
public/assets/alert-overlay.png
Normal file
After Width: | Height: | Size: 135 B |
|
@ -0,0 +1,2 @@
|
|||
// Overwrite this file on deploy if you actually want to track people
|
||||
;
|
BIN
public/assets/analytics-febbaf33d8a12832d4fdec0bf755fcd7.js.gz
Normal file
2
public/assets/analytics.js
Normal file
|
@ -0,0 +1,2 @@
|
|||
// Overwrite this file on deploy if you actually want to track people
|
||||
;
|
BIN
public/assets/analytics.js.gz
Normal file
|
@ -0,0 +1 @@
|
|||
;
|
BIN
public/assets/application-f00251f452c48102b58e406cc891259e.js.gz
Normal file
1
public/assets/application.css
Normal file
BIN
public/assets/application.css.gz
Normal file
1
public/assets/application.js
Normal file
|
@ -0,0 +1 @@
|
|||
;
|
BIN
public/assets/application.js.gz
Normal file
BIN
public/assets/blog-3c0a43b8489ccaedf87d6cf963e8f491.png
Normal file
After Width: | Height: | Size: 4 KiB |
BIN
public/assets/blog.png
Normal file
After Width: | Height: | Size: 4 KiB |
1
public/assets/closet_hangers/index.js
Normal file
BIN
public/assets/closet_hangers/index.js.gz
Normal file
|
@ -0,0 +1 @@
|
|||
(function(){function e(){var e=$(this);e.closest("li").toggleClass("checked",e.is(":checked"))}$("#petpage-closet-lists input").click(e).each(e)})();
|
1
public/assets/closet_hangers/petpage.js
Normal file
|
@ -0,0 +1 @@
|
|||
(function(){function e(){var e=$(this);e.closest("li").toggleClass("checked",e.is(":checked"))}$("#petpage-closet-lists input").click(e).each(e)})();
|
BIN
public/assets/closet_hangers/petpage.js.gz
Normal file
36
public/assets/controls-0bf0cc249afd7039305b3dff2670d113.js
Normal file
BIN
public/assets/controls-0bf0cc249afd7039305b3dff2670d113.js.gz
Normal file
36
public/assets/controls.js
vendored
Normal file
BIN
public/assets/controls.js.gz
Normal file
After Width: | Height: | Size: 142 KiB |
BIN
public/assets/default_preview.png
Normal file
After Width: | Height: | Size: 142 KiB |
BIN
public/assets/dragdrop-3c19aaa2d017800cbe87bc6f786d2999.js.gz
Normal file
6
public/assets/dragdrop.js
vendored
Normal file
BIN
public/assets/dragdrop.js.gz
Normal file
12
public/assets/effects-56d0a4b0b0637c7fe22102a0ad5dd2f5.js
Normal file
BIN
public/assets/effects-56d0a4b0b0637c7fe22102a0ad5dd2f5.js.gz
Normal file
12
public/assets/effects.js
vendored
Normal file
BIN
public/assets/effects.js.gz
Normal file
BIN
public/assets/forum-5f20828c77844a76d3b6a43d230f4bb4.png
Normal file
After Width: | Height: | Size: 4.1 KiB |
BIN
public/assets/forum.png
Normal file
After Width: | Height: | Size: 4.1 KiB |
BIN
public/assets/grid-f5696880747244116772725bf4834d5e.png
Normal file
After Width: | Height: | Size: 206 B |