--- !ruby/object:Gem::Specification 
name: fb_graph
version: !ruby/object:Gem::Version 
  prerelease: false
  segments: 
  - 0
  - 0
  - 4
  version: 0.0.4
platform: ruby
authors: 
- nov matake
autorequire: 
bindir: bin
cert_chain: []

date: 2010-04-29 00:00:00 +09:00
default_executable: 
dependencies: 
- !ruby/object:Gem::Dependency 
  name: json
  prerelease: false
  requirement: &id001 !ruby/object:Gem::Requirement 
    requirements: 
    - - ">="
      - !ruby/object:Gem::Version 
        segments: 
        - 0
        version: "0"
  type: :development
  version_requirements: *id001
- !ruby/object:Gem::Dependency 
  name: activesupport
  prerelease: false
  requirement: &id002 !ruby/object:Gem::Requirement 
    requirements: 
    - - ">="
      - !ruby/object:Gem::Version 
        segments: 
        - 0
        version: "0"
  type: :development
  version_requirements: *id002
- !ruby/object:Gem::Dependency 
  name: rest-client
  prerelease: false
  requirement: &id003 !ruby/object:Gem::Requirement 
    requirements: 
    - - ">="
      - !ruby/object:Gem::Version 
        segments: 
        - 0
        version: "0"
  type: :development
  version_requirements: *id003
description: A Ruby wrapper for Facebook Graph API
email: nov@matake.jp
executables: []

extensions: []

extra_rdoc_files: 
- LICENSE
- README.rdoc
files: 
- .document
- .gitignore
- LICENSE
- README.rdoc
- Rakefile
- VERSION
- fb_graph.gemspec
- lib/fb_graph.rb
- lib/fb_graph/album.rb
- lib/fb_graph/collection.rb
- lib/fb_graph/comment.rb
- lib/fb_graph/comparison.rb
- lib/fb_graph/connections.rb
- lib/fb_graph/connections/activities.rb
- lib/fb_graph/connections/albums.rb
- lib/fb_graph/connections/attending.rb
- lib/fb_graph/connections/books.rb
- lib/fb_graph/connections/comments.rb
- lib/fb_graph/connections/declined.rb
- lib/fb_graph/connections/events.rb
- lib/fb_graph/connections/feed.rb
- lib/fb_graph/connections/friends.rb
- lib/fb_graph/connections/groups.rb
- lib/fb_graph/connections/home.rb
- lib/fb_graph/connections/interests.rb
- lib/fb_graph/connections/invited.rb
- lib/fb_graph/connections/likes.rb
- lib/fb_graph/connections/links.rb
- lib/fb_graph/connections/maybe.rb
- lib/fb_graph/connections/members.rb
- lib/fb_graph/connections/movies.rb
- lib/fb_graph/connections/music.rb
- lib/fb_graph/connections/noreply.rb
- lib/fb_graph/connections/notes.rb
- lib/fb_graph/connections/photos.rb
- lib/fb_graph/connections/picture.rb
- lib/fb_graph/connections/posts.rb
- lib/fb_graph/connections/statuses.rb
- lib/fb_graph/connections/tagged.rb
- lib/fb_graph/connections/television.rb
- lib/fb_graph/connections/videos.rb
- lib/fb_graph/event.rb
- lib/fb_graph/group.rb
- lib/fb_graph/link.rb
- lib/fb_graph/node.rb
- lib/fb_graph/note.rb
- lib/fb_graph/page.rb
- lib/fb_graph/photo.rb
- lib/fb_graph/post.rb
- lib/fb_graph/status.rb
- lib/fb_graph/tag.rb
- lib/fb_graph/user.rb
- lib/fb_graph/venue.rb
- lib/fb_graph/video.rb
- spec/fake_json/pages/platform_private.json
- spec/fake_json/pages/platform_public.json
- spec/fake_json/pages/statuses/platform_private.json
- spec/fake_json/pages/statuses/platform_public.json
- spec/fake_json/users/activities/arjun_private.json
- spec/fake_json/users/activities/arjun_public.json
- spec/fake_json/users/albums/matake_private.json
- spec/fake_json/users/albums/matake_public.json
- spec/fake_json/users/arjun_private.json
- spec/fake_json/users/arjun_public.json
- spec/fake_json/users/events/matake_private.json
- spec/fake_json/users/events/matake_public.json
- spec/fake_json/users/feed/arjun_private.json
- spec/fake_json/users/feed/arjun_public.json
- spec/fake_json/users/friends/arjun_private.json
- spec/fake_json/users/friends/arjun_public.json
- spec/fake_json/users/friends/me_private.json
- spec/fake_json/users/friends/me_public.json
- spec/fake_json/users/groups/matake_private.json
- spec/fake_json/users/groups/matake_public.json
- spec/fake_json/users/home/arjun_private.json
- spec/fake_json/users/home/arjun_public.json
- spec/fake_json/users/home/me_private.json
- spec/fake_json/users/home/me_private_next.json
- spec/fake_json/users/home/me_private_previous.json
- spec/fake_json/users/home/me_public.json
- spec/fake_json/users/likes/arjun_private.json
- spec/fake_json/users/likes/arjun_public.json
- spec/fake_json/users/me_private.json
- spec/fake_json/users/me_public.json
- spec/fake_json/users/posts/arjun_private.json
- spec/fake_json/users/posts/arjun_public.json
- spec/fake_json/users/statuses/arjun_private.json
- spec/fake_json/users/statuses/arjun_public.json
- spec/fake_json/users/tagged/arjun_private.json
- spec/fake_json/users/tagged/arjun_public.json
- spec/fb_graph/album_spec.rb
- spec/fb_graph/collection_spec.rb
- spec/fb_graph/connections/activities_spec.rb
- spec/fb_graph/connections/albums_spec.rb
- spec/fb_graph/connections/events_spec.rb
- spec/fb_graph/connections/feed_spec.rb
- spec/fb_graph/connections/friends_spec.rb
- spec/fb_graph/connections/groups_spec.rb
- spec/fb_graph/connections/home_spec.rb
- spec/fb_graph/connections/likes_spec.rb
- spec/fb_graph/connections/picture_spec.rb
- spec/fb_graph/connections/posts_spec.rb
- spec/fb_graph/connections/statuses_spec.rb
- spec/fb_graph/connections/tagged_spec.rb
- spec/fb_graph/event_spec.rb
- spec/fb_graph/group_spec.rb
- spec/fb_graph/link_spec.rb
- spec/fb_graph/node_spec.rb
- spec/fb_graph/note_spec.rb
- spec/fb_graph/page_spec.rb
- spec/fb_graph/photo_spec.rb
- spec/fb_graph/post_spec.rb
- spec/fb_graph/status_spec.rb
- spec/fb_graph/user_spec.rb
- spec/fb_graph/video_spec.rb
- spec/fb_graph_spec.rb
- spec/helpers/fake_json_helper.rb
- spec/spec.opts
- spec/spec_helper.rb
has_rdoc: true
homepage: http://github.com/nov/fb_graph
licenses: []

post_install_message: 
rdoc_options: 
- --charset=UTF-8
require_paths: 
- lib
required_ruby_version: !ruby/object:Gem::Requirement 
  requirements: 
  - - ">="
    - !ruby/object:Gem::Version 
      segments: 
      - 0
      version: "0"
required_rubygems_version: !ruby/object:Gem::Requirement 
  requirements: 
  - - ">="
    - !ruby/object:Gem::Version 
      segments: 
      - 0
      version: "0"
requirements: []

rubyforge_project: 
rubygems_version: 1.3.6
signing_key: 
specification_version: 3
summary: A Ruby wrapper for Facebook Graph API
test_files: 
- spec/fb_graph/album_spec.rb
- spec/fb_graph/collection_spec.rb
- spec/fb_graph/connections/activities_spec.rb
- spec/fb_graph/connections/albums_spec.rb
- spec/fb_graph/connections/events_spec.rb
- spec/fb_graph/connections/feed_spec.rb
- spec/fb_graph/connections/friends_spec.rb
- spec/fb_graph/connections/groups_spec.rb
- spec/fb_graph/connections/home_spec.rb
- spec/fb_graph/connections/likes_spec.rb
- spec/fb_graph/connections/picture_spec.rb
- spec/fb_graph/connections/posts_spec.rb
- spec/fb_graph/connections/statuses_spec.rb
- spec/fb_graph/connections/tagged_spec.rb
- spec/fb_graph/event_spec.rb
- spec/fb_graph/group_spec.rb
- spec/fb_graph/link_spec.rb
- spec/fb_graph/node_spec.rb
- spec/fb_graph/note_spec.rb
- spec/fb_graph/page_spec.rb
- spec/fb_graph/photo_spec.rb
- spec/fb_graph/post_spec.rb
- spec/fb_graph/status_spec.rb
- spec/fb_graph/user_spec.rb
- spec/fb_graph/video_spec.rb
- spec/fb_graph_spec.rb
- spec/helpers/fake_json_helper.rb
- spec/spec_helper.rb