carrot-facebook 0.9.9 → 0.9.10

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,4 @@
1
+ require "carrot-facebook/controller"
1
2
  require "carrot-facebook/middleware"
2
3
  require "carrot-facebook/version"
3
4
  require "carrot-facebook/view_helpers"
@@ -1,21 +1,22 @@
1
1
  module Carrot
2
2
  module Facebook
3
3
  module Controller
4
- include ActiveSupport::Concerns
4
+ extend ActiveSupport::Concern
5
5
 
6
6
  def top_redirect_to(*args)
7
7
  @redirect_url = url_for(*args)
8
- render :layout => false, :inline => <<-HTML
8
+ render :layout => false, :inline => "
9
9
  <html><head>
10
- <script type="text/javascript">
11
- window.top.location.href = <%= @redirect_url.to_json -%>;
10
+ <script type=\"text/javascript\">
11
+ window.top.location.href = \"#{@redirect_url.to_json}\";
12
+ alert(\"test\");
12
13
  </script>
13
14
  <noscript>
14
- <meta http-equiv="refresh" content="0;url=<%=h @redirect_url %>" />
15
- <meta http-equiv="window-target" content="_top" />
15
+ <meta http-equiv=\"refresh\" content=\"0;url=#{h @redirect_url}\" />
16
+ <meta http-equiv=\"window-target\" content=\"_top\" />
16
17
  </noscript>
17
18
  </head></html>
18
- HTML
19
+ ".html_safe
19
20
  end
20
21
  end
21
22
  end
@@ -12,8 +12,10 @@ module Carrot
12
12
  ActionView::Base.send :include, ViewHelpers
13
13
  end
14
14
 
15
- initializer "carrot.facebook.controller" do |app|
16
- ActionController::Base.send :include, Carrot::Facebook::Controller
15
+ initializer "carrot.facebook.action_controller" do
16
+ ActiveSupport.on_load(:action_controller) do
17
+ include Carrot::Facebook::Controller
18
+ end
17
19
  end
18
20
  end
19
21
  end
@@ -2,7 +2,7 @@ module Carrot
2
2
  module Facebook
3
3
  MAJOR = 0
4
4
  MINOR = 9
5
- TINY = 9
5
+ TINY = 10
6
6
  PRE = nil
7
7
 
8
8
  VERSION = [MAJOR, MINOR, TINY, PRE].compact.join('.')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: carrot-facebook
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.9
4
+ version: 0.9.10
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -14,7 +14,7 @@ date: 2013-02-13 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: yajl-ruby
17
- requirement: &70299727183640 !ruby/object:Gem::Requirement
17
+ requirement: &70168114292780 !ruby/object:Gem::Requirement
18
18
  none: false
19
19
  requirements:
20
20
  - - ! '>='
@@ -22,10 +22,10 @@ dependencies:
22
22
  version: '0'
23
23
  type: :runtime
24
24
  prerelease: false
25
- version_requirements: *70299727183640
25
+ version_requirements: *70168114292780
26
26
  - !ruby/object:Gem::Dependency
27
27
  name: p3p
28
- requirement: &70299727182320 !ruby/object:Gem::Requirement
28
+ requirement: &70168114291420 !ruby/object:Gem::Requirement
29
29
  none: false
30
30
  requirements:
31
31
  - - ! '>='
@@ -33,10 +33,10 @@ dependencies:
33
33
  version: '0'
34
34
  type: :runtime
35
35
  prerelease: false
36
- version_requirements: *70299727182320
36
+ version_requirements: *70168114291420
37
37
  - !ruby/object:Gem::Dependency
38
38
  name: rails
39
- requirement: &70299727181220 !ruby/object:Gem::Requirement
39
+ requirement: &70168114290460 !ruby/object:Gem::Requirement
40
40
  none: false
41
41
  requirements:
42
42
  - - ! '>='
@@ -44,10 +44,10 @@ dependencies:
44
44
  version: '0'
45
45
  type: :development
46
46
  prerelease: false
47
- version_requirements: *70299727181220
47
+ version_requirements: *70168114290460
48
48
  - !ruby/object:Gem::Dependency
49
49
  name: rspec
50
- requirement: &70299727180280 !ruby/object:Gem::Requirement
50
+ requirement: &70168114289380 !ruby/object:Gem::Requirement
51
51
  none: false
52
52
  requirements:
53
53
  - - ! '>='
@@ -55,7 +55,7 @@ dependencies:
55
55
  version: '0'
56
56
  type: :development
57
57
  prerelease: false
58
- version_requirements: *70299727180280
58
+ version_requirements: *70168114289380
59
59
  description: Facebook view helpers and signed request handling.
60
60
  email:
61
61
  - tmilewski@gmail.com