pageflow 0.0.2 → 0.0.3
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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e33bcd7de35b2c784b255010e5fd47c977a8dde9
|
|
4
|
+
data.tar.gz: 66a9a86d62359080289f52e22e22c31bb1f83443
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 25ce57e2b71b291316d14778491fb58274926d3433387cb06d32cdae5ce8891914f5de43d90760331b5e88178af042b00de5504013b21039ff4294f2b8dfad4b
|
|
7
|
+
data.tar.gz: c4da11d8f0f0b1da8513a7bdead18a82b635b18a7dbf74556dd2a8601b9f30df17c18f81faf64e8b727fa492a8ad3d3f2dbbf66debc5141b86d398ab3053d04e
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
pageflow.assetUrls = {
|
|
2
2
|
largeBandwidthProbe: '<%= Rails.env.test? ? asset_path("bandwidth_probe_large.png") : "http://#{File.join(Pageflow.config.zencoder_options[:s3_host_alias], "bandwidth_probe_large.png")}" %>',
|
|
3
|
+
|
|
3
4
|
smallBandwidthProbe: '<%= Rails.env.test? ? asset_path("bandwidth_probe_small.png") : "http://#{File.join(Pageflow.config.zencoder_options[:s3_host_alias], "bandwidth_probe_small.png")}" %>',
|
|
4
|
-
audioSwf: '<%= asset_path "audio5js.swf" %>',
|
|
5
|
-
emptyMp4: '<%= asset_path "empty.mp4" %>',
|
|
6
|
-
emptyWebm: '<%= asset_path "empty.webm" %>'
|
|
5
|
+
audioSwf: '<%= asset_path "pageflow/audio5js.swf" %>',
|
|
6
|
+
emptyMp4: '<%= asset_path "pageflow/empty.mp4" %>',
|
|
7
|
+
emptyWebm: '<%= asset_path "pageflow/empty.webm" %>'
|
|
7
8
|
};
|
|
@@ -7,6 +7,7 @@ module Pageflow
|
|
|
7
7
|
inject_into_file 'config/initializers/active_admin.rb', after: "ActiveAdmin.setup do |config|\n" do
|
|
8
8
|
<<-RUBY
|
|
9
9
|
config.namespace :admin do |admin|
|
|
10
|
+
# Place a user user profile button next to the sign out link.
|
|
10
11
|
admin.build_menu :utility_navigation do |menu|
|
|
11
12
|
menu.add(:label => proc { display_name current_active_admin_user },
|
|
12
13
|
:id => 'current_user',
|
data/lib/pageflow/version.rb
CHANGED