Displaying 2 results from an estimated 2 matches for "cd5839fa631138fe59903b79af552531".
2012 Jan 03
1
Rails 3.1 assets pipeline issue in production
...development , I wrote in the script :
''plugins'': {
"/assets/jwplayer/ova-jw.swf": {
"overlays": {"regions": [{ "id": .........
but in production as it''s compiled , I got
''plugins'': {
"/assets/jwplayer/ova-jw-cd5839fa631138fe59903b79af552531.swf": {
"overlays": {"regions": [{ "id": .......
I put it in assets/javascripts/jwplayer/ova-jw.swf
I did it because the player.swf is also in the same folder , and
running fine , the clip is playing...
the urls are generated , in partial _fw_player.js.erb ,...
2012 Jan 04
0
how to avoid pre-compile on deployment ..
...on.rb
and that was fine ... I got the files player.swf and ova-jw.swf
in public/assets/jwplayer folder
then I put back config.assets.digest = true in production.rb and did
my cap deploy
but on the remote production server , in public/assets I have
player.swf and ova-jw.swf BUT also
ova-jw-cd5839fa631138fe59903b79af552531 and
player-62ab06eeb4e8b316fd0e530ae810c579
seems not to be an issue for the player.swf , but it''s definitely an
issue for the ova-jw.swf which is a plugin and need dynamic
settings ...
feedback will appreciated on how to solve this issue ( the ova-jw.swf
plug is running fine in local...