mambanation 0.1.32 → 0.2.1

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.
Files changed (3) hide show
  1. data/VERSION.yml +2 -2
  2. data/lib/mambanation/base.rb +9 -6
  3. metadata +6 -6
data/VERSION.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  ---
2
2
  :major: 0
3
3
  :build:
4
- :minor: 1
5
- :patch: 32
4
+ :minor: 2
5
+ :patch: 1
@@ -4,16 +4,17 @@ module MambaNation
4
4
 
5
5
  def_delegators :client, :get, :post, :put, :delete
6
6
 
7
- attr_reader :client, :fbs_cookies
7
+ attr_reader :client, :fbs_cookies, :signed_request
8
8
 
9
- def initialize(client, fbs_cookies = nil)
9
+ def initialize(client, options = {})
10
10
  @client = client
11
- @fbs_cookies = fbs_cookies
11
+ @fbs_cookies = options.delete(:fbs_cookies) if options.has_key? :fbs_cookies
12
+ @signed_request = options.delete(:signed_request) if options.has_key? :signed_request
12
13
  end
13
14
 
14
15
  # Class method to fetch current user based on cookie
15
- def self.current_user(client, fbs_cookies)
16
- MambaNation::Base.new(client, fbs_cookies).current_user
16
+ def self.current_user(client, options = {})
17
+ MambaNation::Base.new(client, options).current_user
17
18
  end
18
19
 
19
20
  #
@@ -241,7 +242,9 @@ module MambaNation
241
242
 
242
243
  def request_options(opts={})
243
244
  opts[:headers] ||= {}
244
- opts[:headers].merge! "X-FB-COOKIES" => @fbs_cookies if @fbs_cookies
245
+ opts[:headers].merge!("X-FB-COOKIES" => @fbs_cookies) if @fbs_cookies
246
+ opts[:query] ||= {}
247
+ opts[:query].merge!("signed_request" => @signed_request) if @signed_request
245
248
  opts
246
249
  end
247
250
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mambanation
3
3
  version: !ruby/object:Gem::Version
4
- hash: 91
5
- prerelease: false
4
+ hash: 21
5
+ prerelease:
6
6
  segments:
7
7
  - 0
8
+ - 2
8
9
  - 1
9
- - 32
10
- version: 0.1.32
10
+ version: 0.2.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - "J\xC3\xA9r\xC3\xA9my Van de Wyngaert"
@@ -17,7 +17,7 @@ autorequire:
17
17
  bindir: bin
18
18
  cert_chain: []
19
19
 
20
- date: 2010-12-31 00:00:00 +01:00
20
+ date: 2011-01-10 00:00:00 +01:00
21
21
  default_executable:
22
22
  dependencies:
23
23
  - !ruby/object:Gem::Dependency
@@ -224,7 +224,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
224
224
  requirements: []
225
225
 
226
226
  rubyforge_project:
227
- rubygems_version: 1.3.7
227
+ rubygems_version: 1.4.2
228
228
  signing_key:
229
229
  specification_version: 3
230
230
  summary: wrapper for mambanation-api