buddy 2.0.6 → 2.0.7

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.
data/README.md CHANGED
@@ -5,7 +5,7 @@ Buddy is a lightweight Facebook library for Rails 3.
5
5
  ## Overview
6
6
 
7
7
  * Support for iFrame Apps
8
- * Uses signed\_request parameters for authentication
8
+ * Supports signed\_request and cookies for authentication
9
9
  * Supports the Graph API and old REST API
10
10
  * Fully compatible with **Rails 3** and **Ruby 1.9.2**
11
11
 
@@ -17,7 +17,7 @@ Add the following to your Gemfile
17
17
 
18
18
  or for the latest Git version
19
19
 
20
- gem 'buddy', :git => 'git://github.com/buddybrand/buddy.git'
20
+ gem 'buddy', :git => 'git://github.com/Hoodow/buddy.git'
21
21
 
22
22
  Generate and edit config/buddy.yml
23
23
 
@@ -52,10 +52,7 @@ If the user authorized the application you can do API calls like this:
52
52
 
53
53
  released under the **MIT license**
54
54
 
55
- Copyright (c) 2010:
56
-
57
- * Ole Riesenberg
58
- * Klaus Breyer
55
+ Copyright (c) 2011 Ole Riesenberg
59
56
 
60
57
  Some concepts and code adapted from [Facebooker](http://github.com/mmangino/facebooker)
61
58
 
data/buddy.gemspec CHANGED
@@ -9,8 +9,8 @@ Gem::Specification.new do |s|
9
9
  s.authors = ["Ole Riesenberg"]
10
10
  s.email = ["or@buddybrand.com"]
11
11
  s.homepage = "http://rubygems.org/gems/buddy"
12
- s.summary = %q{buddybrand's facebook library}
13
- s.description = %q{buddybrand's facebook library}
12
+ s.summary = %q{Facebook library focusing on getting the work done.}
13
+ s.description = %q{Facebook library focusing on getting the work done.}
14
14
 
15
15
  s.files = `git ls-files`.split("\n")
16
16
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
@@ -7,7 +7,7 @@ module Buddy
7
7
 
8
8
  url = super(options)
9
9
 
10
- if url[0..6] == 'http://'
10
+ if url[0..6] == 'http://' or url[0..7] == 'https://'
11
11
  url
12
12
  elsif options.is_a?(Hash) && options[:canvas] == false
13
13
  base = only_path ? '' : Buddy.current_config["callback_url"]
data/lib/buddy/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Buddy
2
- VERSION = "2.0.6"
2
+ VERSION = "2.0.7"
3
3
  end
metadata CHANGED
@@ -1,34 +1,23 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: buddy
3
- version: !ruby/object:Gem::Version
4
- hash: 3
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.0.7
5
5
  prerelease:
6
- segments:
7
- - 2
8
- - 0
9
- - 6
10
- version: 2.0.6
11
6
  platform: ruby
12
- authors:
7
+ authors:
13
8
  - Ole Riesenberg
14
9
  autorequire:
15
10
  bindir: bin
16
11
  cert_chain: []
17
-
18
- date: 2011-07-27 00:00:00 +02:00
19
- default_executable:
12
+ date: 2011-09-27 00:00:00.000000000Z
20
13
  dependencies: []
21
-
22
- description: buddybrand's facebook library
23
- email:
14
+ description: Facebook library focusing on getting the work done.
15
+ email:
24
16
  - or@buddybrand.com
25
17
  executables: []
26
-
27
18
  extensions: []
28
-
29
19
  extra_rdoc_files: []
30
-
31
- files:
20
+ files:
32
21
  - .gitignore
33
22
  - Gemfile
34
23
  - Gemfile.lock
@@ -49,39 +38,29 @@ files:
49
38
  - lib/generators/buddy_config/buddy_config_generator.rb
50
39
  - lib/generators/buddy_config/templates/buddy.yml
51
40
  - test/test_buddy.rb
52
- has_rdoc: true
53
41
  homepage: http://rubygems.org/gems/buddy
54
42
  licenses: []
55
-
56
43
  post_install_message:
57
44
  rdoc_options: []
58
-
59
- require_paths:
45
+ require_paths:
60
46
  - lib
61
- required_ruby_version: !ruby/object:Gem::Requirement
47
+ required_ruby_version: !ruby/object:Gem::Requirement
62
48
  none: false
63
- requirements:
64
- - - ">="
65
- - !ruby/object:Gem::Version
66
- hash: 3
67
- segments:
68
- - 0
69
- version: "0"
70
- required_rubygems_version: !ruby/object:Gem::Requirement
49
+ requirements:
50
+ - - ! '>='
51
+ - !ruby/object:Gem::Version
52
+ version: '0'
53
+ required_rubygems_version: !ruby/object:Gem::Requirement
71
54
  none: false
72
- requirements:
73
- - - ">="
74
- - !ruby/object:Gem::Version
75
- hash: 3
76
- segments:
77
- - 0
78
- version: "0"
55
+ requirements:
56
+ - - ! '>='
57
+ - !ruby/object:Gem::Version
58
+ version: '0'
79
59
  requirements: []
80
-
81
60
  rubyforge_project:
82
- rubygems_version: 1.4.1
61
+ rubygems_version: 1.8.10
83
62
  signing_key:
84
63
  specification_version: 3
85
- summary: buddybrand's facebook library
86
- test_files:
64
+ summary: Facebook library focusing on getting the work done.
65
+ test_files:
87
66
  - test/test_buddy.rb