facebook_graphr 0.1.3 → 0.1.4
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/Rakefile +1 -0
 - data/VERSION +1 -1
 - data/facebook_graphr.gemspec +5 -2
 - data/lib/facebook_graphr.rb +8 -1
 - metadata +18 -4
 
    
        data/Rakefile
    CHANGED
    
    | 
         @@ -11,6 +11,7 @@ begin 
     | 
|
| 
       11 
11 
     | 
    
         
             
                gem.homepage = "http://github.com/kball/facebook_graphr"
         
     | 
| 
       12 
12 
     | 
    
         
             
                gem.authors = ["Kevin Ball"]
         
     | 
| 
       13 
13 
     | 
    
         
             
                gem.add_development_dependency "thoughtbot-shoulda", ">= 0"
         
     | 
| 
      
 14 
     | 
    
         
            +
                gem.add_dependency 'httparty'
         
     | 
| 
       14 
15 
     | 
    
         
             
                # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
         
     | 
| 
       15 
16 
     | 
    
         
             
              end
         
     | 
| 
       16 
17 
     | 
    
         
             
              Jeweler::GemcutterTasks.new
         
     | 
    
        data/VERSION
    CHANGED
    
    | 
         @@ -1 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            0.1. 
     | 
| 
      
 1 
     | 
    
         
            +
            0.1.4
         
     | 
    
        data/facebook_graphr.gemspec
    CHANGED
    
    | 
         @@ -5,11 +5,11 @@ 
     | 
|
| 
       5 
5 
     | 
    
         | 
| 
       6 
6 
     | 
    
         
             
            Gem::Specification.new do |s|
         
     | 
| 
       7 
7 
     | 
    
         
             
              s.name = %q{facebook_graphr}
         
     | 
| 
       8 
     | 
    
         
            -
              s.version = "0.1. 
     | 
| 
      
 8 
     | 
    
         
            +
              s.version = "0.1.4"
         
     | 
| 
       9 
9 
     | 
    
         | 
| 
       10 
10 
     | 
    
         
             
              s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
         
     | 
| 
       11 
11 
     | 
    
         
             
              s.authors = ["Kevin Ball"]
         
     | 
| 
       12 
     | 
    
         
            -
              s.date = %q{2010-08- 
     | 
| 
      
 12 
     | 
    
         
            +
              s.date = %q{2010-08-31}
         
     | 
| 
       13 
13 
     | 
    
         
             
              s.description = %q{A lightweight gem for dealing with Facebook's new Open Graph API}
         
     | 
| 
       14 
14 
     | 
    
         
             
              s.email = %q{kmball11@gmail.com}
         
     | 
| 
       15 
15 
     | 
    
         
             
              s.extra_rdoc_files = [
         
     | 
| 
         @@ -48,11 +48,14 @@ Gem::Specification.new do |s| 
     | 
|
| 
       48 
48 
     | 
    
         | 
| 
       49 
49 
     | 
    
         
             
                if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
         
     | 
| 
       50 
50 
     | 
    
         
             
                  s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
         
     | 
| 
      
 51 
     | 
    
         
            +
                  s.add_runtime_dependency(%q<httparty>, [">= 0"])
         
     | 
| 
       51 
52 
     | 
    
         
             
                else
         
     | 
| 
       52 
53 
     | 
    
         
             
                  s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
         
     | 
| 
      
 54 
     | 
    
         
            +
                  s.add_dependency(%q<httparty>, [">= 0"])
         
     | 
| 
       53 
55 
     | 
    
         
             
                end
         
     | 
| 
       54 
56 
     | 
    
         
             
              else
         
     | 
| 
       55 
57 
     | 
    
         
             
                s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
         
     | 
| 
      
 58 
     | 
    
         
            +
                s.add_dependency(%q<httparty>, [">= 0"])
         
     | 
| 
       56 
59 
     | 
    
         
             
              end
         
     | 
| 
       57 
60 
     | 
    
         
             
            end
         
     | 
| 
       58 
61 
     | 
    
         | 
    
        data/lib/facebook_graphr.rb
    CHANGED
    
    | 
         @@ -2,7 +2,14 @@ module FacebookGraphr 
     | 
|
| 
       2 
2 
     | 
    
         
             
              BASE_URL = "https://graph.facebook.com/"
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
4 
     | 
    
         
             
              class << self
         
     | 
| 
       5 
     | 
    
         
            -
                 
     | 
| 
      
 5 
     | 
    
         
            +
                attr_writer :config
         
     | 
| 
      
 6 
     | 
    
         
            +
                def config
         
     | 
| 
      
 7 
     | 
    
         
            +
                  if defined?(@config)
         
     | 
| 
      
 8 
     | 
    
         
            +
                    @config
         
     | 
| 
      
 9 
     | 
    
         
            +
                  else
         
     | 
| 
      
 10 
     | 
    
         
            +
                    raise "Tried to access FacebookGraphr.config without calling FacebookGraphr.setup"
         
     | 
| 
      
 11 
     | 
    
         
            +
                  end
         
     | 
| 
      
 12 
     | 
    
         
            +
                end
         
     | 
| 
       6 
13 
     | 
    
         
             
                def setup(yml_file)
         
     | 
| 
       7 
14 
     | 
    
         
             
                  hash = File.open(yml_file) do |f|
         
     | 
| 
       8 
15 
     | 
    
         
             
                    YAML::load(f)
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,13 +1,13 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification 
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: facebook_graphr
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version 
         
     | 
| 
       4 
     | 
    
         
            -
              hash:  
     | 
| 
      
 4 
     | 
    
         
            +
              hash: 19
         
     | 
| 
       5 
5 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       6 
6 
     | 
    
         
             
              segments: 
         
     | 
| 
       7 
7 
     | 
    
         
             
              - 0
         
     | 
| 
       8 
8 
     | 
    
         
             
              - 1
         
     | 
| 
       9 
     | 
    
         
            -
              -  
     | 
| 
       10 
     | 
    
         
            -
              version: 0.1. 
     | 
| 
      
 9 
     | 
    
         
            +
              - 4
         
     | 
| 
      
 10 
     | 
    
         
            +
              version: 0.1.4
         
     | 
| 
       11 
11 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       12 
12 
     | 
    
         
             
            authors: 
         
     | 
| 
       13 
13 
     | 
    
         
             
            - Kevin Ball
         
     | 
| 
         @@ -15,7 +15,7 @@ autorequire: 
     | 
|
| 
       15 
15 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       16 
16 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       17 
17 
     | 
    
         | 
| 
       18 
     | 
    
         
            -
            date: 2010-08- 
     | 
| 
      
 18 
     | 
    
         
            +
            date: 2010-08-31 00:00:00 -07:00
         
     | 
| 
       19 
19 
     | 
    
         
             
            default_executable: 
         
     | 
| 
       20 
20 
     | 
    
         
             
            dependencies: 
         
     | 
| 
       21 
21 
     | 
    
         
             
            - !ruby/object:Gem::Dependency 
         
     | 
| 
         @@ -32,6 +32,20 @@ dependencies: 
     | 
|
| 
       32 
32 
     | 
    
         
             
                    version: "0"
         
     | 
| 
       33 
33 
     | 
    
         
             
              type: :development
         
     | 
| 
       34 
34 
     | 
    
         
             
              version_requirements: *id001
         
     | 
| 
      
 35 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency 
         
     | 
| 
      
 36 
     | 
    
         
            +
              name: httparty
         
     | 
| 
      
 37 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 38 
     | 
    
         
            +
              requirement: &id002 !ruby/object:Gem::Requirement 
         
     | 
| 
      
 39 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 40 
     | 
    
         
            +
                requirements: 
         
     | 
| 
      
 41 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 42 
     | 
    
         
            +
                  - !ruby/object:Gem::Version 
         
     | 
| 
      
 43 
     | 
    
         
            +
                    hash: 3
         
     | 
| 
      
 44 
     | 
    
         
            +
                    segments: 
         
     | 
| 
      
 45 
     | 
    
         
            +
                    - 0
         
     | 
| 
      
 46 
     | 
    
         
            +
                    version: "0"
         
     | 
| 
      
 47 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 48 
     | 
    
         
            +
              version_requirements: *id002
         
     | 
| 
       35 
49 
     | 
    
         
             
            description: A lightweight gem for dealing with Facebook's new Open Graph API
         
     | 
| 
       36 
50 
     | 
    
         
             
            email: kmball11@gmail.com
         
     | 
| 
       37 
51 
     | 
    
         
             
            executables: []
         
     |