Giter Club home page Giter Club logo

fb_graph2's Introduction

FbGraph2

Facebook Graph API v2.x Wrapper in Ruby

Build Status

Installation

Add this line to your application's Gemfile:

gem 'fb_graph2'

And then execute:

$ bundle

Or install it yourself as:

$ gem install fb_graph2

Usage

See fb_graph2 Wiki.

Contributing

  1. Fork it ( https://github.com/nov/fb_graph2/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

fb_graph2's People

Contributors

akirahrkw avatar avokhmin avatar barvaz avatar deadkarma avatar dsalahutdinov avatar elado avatar gizotti avatar gr8bit avatar nitishmadhukar avatar nov avatar ryanhouston avatar scicco avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

fb_graph2's Issues

Paginating is cumbersome

It requires params repetition:

page1 = FbGraph2::Page.new(page_id, access_token: access_token).events(since: Time.now)
page2 = page1.next(since: Time.now)

Doing

page1 = FbGraph2::Page.new(page_id, access_token: access_token).events(since: Time.now)
page2 = page1.next

will return page2 with events that can be before Time.now

I believe this code

owner.send edge, options.merge(collection.next).merge(_options_)
might be confusing params and options. I think it should preserve params such as since and limit across paginated pages but it does not.

Receiving messages as a page

Hi, I've tried to understand how it works but I'm not able to fetch a page inbox.

page = FbGraph2::Page.new('1234', access_token: 'blah')
page.inbox
NoMethodError: undefined method `inbox' for #<FbGraph2::Page:0x007fed3b6caf90>
from (pry):24:in `__pry__'

How does it work?

NoMethodError: undefined method `access_token=' for #<Rack::OAuth2::AccessToken::Bearer:0x007fd77bebaa50>

Hi,

Error appears when I'm making a user connection:

fb_user = FbGraph2::User.me(params[:token])

and then try to do anything with it, like fetch or detect albums.

user = FbGraph2::User.me(params[:token])
=> #<FbGraph2::User:0x007fd780868ad0
@access_token=
"my_super_secret_access_token_X",
@id=:me,
@raw_attributes={}>

user.fetch
=> NoMethodError: undefined method access_token=' for # <Rack::OAuth2::AccessToken::Bearer:0x007fd77bebaa50> from /Users/piq/.rvm/gems/ruby-2.2.0-preview1/gems/rack-oauth2-1.0.8/lib/rack/oauth2/access_token.rb:11:inblock in initialize'

https://github.com/nov/rack-oauth2/blob/master/lib/rack/oauth2/access_token.rb#L11

Big Thanks for help!

I am getting null pointer exception while using fb_graph2

I basically do FbGraph2::User.me(ACCESS_TOKEN).fetch, and get

RuntimeError: Called id for nil, which would mistakenly be 8 -- if you really wanted the id of nil, use object_id
from /Users/nguyenle/.rvm/gems/ruby-2.1.2/gems/fb_graph2-0.3.2/lib/fb_graph2/util.rb:7:in as_identifier' from /Users/nguyenle/.rvm/gems/ruby-2.1.2/gems/fb_graph2-0.3.2/lib/fb_graph2/node.rb:94:inbuild_endpoint'
from /Users/nguyenle/.rvm/gems/ruby-2.1.2/gems/fb_graph2-0.3.2/lib/fb_graph2/node.rb:63:in block in get' from /Users/nguyenle/.rvm/gems/ruby-2.1.2/gems/fb_graph2-0.3.2/lib/fb_graph2/node.rb:110:inhandle_response'
from /Users/nguyenle/.rvm/gems/ruby-2.1.2/gems/fb_graph2-0.3.2/lib/fb_graph2/node.rb:62:in get' from /Users/nguyenle/.rvm/gems/ruby-2.1.2/gems/fb_graph2-0.3.2/lib/fb_graph2/node.rb:22:infetch'
from (irb):1
from /Users/nguyenle/.rvm/gems/ruby-2.1.2/gems/railties-3.2.19/lib/rails/commands/console.rb:47:in start' from /Users/nguyenle/.rvm/gems/ruby-2.1.2/gems/railties-3.2.19/lib/rails/commands/console.rb:8:instart'
from /Users/nguyenle/.rvm/gems/ruby-2.1.2/gems/railties-3.2.19/lib/rails/commands.rb:41:in <top (required)>' from script/rails:6:inrequire'
from script/rails:6:in `

'

It appears to me that by changing
if option.respond_to? :id ----> if option && option.respond_to? :id solves the problem
nil.respond_to? :id always returns true

Is anyone else running into this or am I missing something? Thanks for you help

Search function ?

hi,

i dont see any search function ( fb_graph have one).
I would like to be able to search in event

FbGraph::Event.search('fb_graph')

Facebook graph version 2.0 doesn t provide this feature anymore ???

`.name` returns nil

In FbGraph, I was able to fetch the name from the FbGraph::User instance
example :
u1 = FbGraph::User.me(ACCESS_TOKEN).fetch
u2.name # => 'Nishutosh Sharma'
But the following does not work
u2 = FbGraph2::User.me(accesstoken).fetch
u2.name # => nil
But, however the raw attributes for u2 contains the :name attribute.

activesupport 4.0.x doesn't support Module#cattr_accessor

if you check the documentation of activesupport 4.0.X [1] the method cattr_accessor is only supported for Classes. From activesupport 4.1.X [2] the method catttr_accessor is supported in the Module.

To reproduce

use the follow Gemfile

source "https://rubygems.org"
ruby "2.1.2"

gem 'activesupport', '4.0.6'
gem 'fb_graph2'

after bundle install & bundle exec irb

irb(main):001:0> require 'fb_graph2'
NoMethodError: undefined method `cattr_accessor' for FbGraph2:Module

[1] http://rubydoc.info/gems/activesupport/4.0.6/Class#cattr_accessor-instance_method
[2] http://rubydoc.info/gems/activesupport/4.1.2/Module#cattr_accessor-instance_method

How can I get bigger profile picture

me = FbGraph2::User.me(token).fetch
me.picture.url

When I run the above code, I'm getting picture of size 50x50.

How can I get a bigger size picture?

Taggable_friends edge missing ?

Hi,

The taggable_friends edge seems to be missing and I was wondering if you could consider adding it.
Or maybe I just couldn't find it.

Thanks for your work on fb_graph

Example of App Network Audience

Hi,
I've been searching how to make the API request above , but could not go further than having an App object.

fb_auth = FbGraph2::Auth.new('app_id', 'app_secret')
token = fb_auth.access_token!
app = FbGraph2::App.new(token)
https://graph.facebook.com/v2.0/<APP_ID>/app_insights/app_event/?since=1398754800&until=1407394800&summary=true&event_name=fb_ad_network_imp&aggregateBy=COUNT&access_token=<ACCESS_TOKEN>

This is from https://developers.facebook.com/docs/audience-network/reporting-api

Help would be appreciated :)
Thanks

Invalid require order

NameError: uninitialized constant FbGraph2::Page
/home/gitlab_ci_runner/.rvm/gems/ruby-2.1.5@facebook_api/gems/fb_graph2-0.4.3/lib/fb_graph2/place.rb:2:in `<module:FbGraph2>'
/home/gitlab_ci_runner/.rvm/gems/ruby-2.1.5@facebook_api/gems/fb_graph2-0.4.3/lib/fb_graph2/place.rb:1:in `<top (required)>'
/home/gitlab_ci_runner/.rvm/gems/ruby-2.1.5@facebook_api/gems/backports-3.6.4/lib/backports/std_lib.rb:9:in `require'
/home/gitlab_ci_runner/.rvm/gems/ruby-2.1.5@facebook_api/gems/backports-3.6.4/lib/backports/std_lib.rb:9:in `require_with_backports'
/home/gitlab_ci_runner/.rvm/gems/ruby-2.1.5@facebook_api/gems/fb_graph2-0.4.3/lib/fb_graph2.rb:53:in `block (2 levels) in <top (required)>'
/home/gitlab_ci_runner/.rvm/gems/ruby-2.1.5@facebook_api/gems/fb_graph2-0.4.3/lib/fb_graph2.rb:52:in `each'
/home/gitlab_ci_runner/.rvm/gems/ruby-2.1.5@facebook_api/gems/fb_graph2-0.4.3/lib/fb_graph2.rb:52:in `block in <top (required)>'
/home/gitlab_ci_runner/.rvm/gems/ruby-2.1.5@facebook_api/gems/fb_graph2-0.4.3/lib/fb_graph2.rb:51:in `each'
/home/gitlab_ci_runner/.rvm/gems/ruby-2.1.5@facebook_api/gems/fb_graph2-0.4.3/lib/fb_graph2.rb:51:in `<top (required)>'
/home/gitlab_ci_runner/.rvm/gems/ruby-2.1.4@global/gems/bundler-1.7.7/lib/bundler/runtime.rb:76:in `require'
/home/gitlab_ci_runner/.rvm/gems/ruby-2.1.4@global/gems/bundler-1.7.7/lib/bundler/runtime.rb:76:in `block (2 levels) in require'
/home/gitlab_ci_runner/.rvm/gems/ruby-2.1.4@global/gems/bundler-1.7.7/lib/bundler/runtime.rb:72:in `each'
/home/gitlab_ci_runner/.rvm/gems/ruby-2.1.4@global/gems/bundler-1.7.7/lib/bundler/runtime.rb:72:in `block in require'
/home/gitlab_ci_runner/.rvm/gems/ruby-2.1.4@global/gems/bundler-1.7.7/lib/bundler/runtime.rb:61:in `each'
/home/gitlab_ci_runner/.rvm/gems/ruby-2.1.4@global/gems/bundler-1.7.7/lib/bundler/runtime.rb:61:in `require'
/home/gitlab_ci_runner/.rvm/gems/ruby-2.1.4@global/gems/bundler-1.7.7/lib/bundler.rb:133:in `require'
/home/gitlab_ci_runner/gitlab-ci-runner/tmp/builds/project-9/app.rb:7:in `<top (required)>'
/home/gitlab_ci_runner/gitlab-ci-runner/tmp/builds/project-9/rakefile.rb:1:in `require'
/home/gitlab_ci_runner/gitlab-ci-runner/tmp/builds/project-9/rakefile.rb:1:in `<top (required)>'
/home/gitlab_ci_runner/.rvm/gems/ruby-2.1.5@facebook_api/bin/ruby_executable_hooks:15:in `eval'
/home/gitlab_ci_runner/.rvm/gems/ruby-2.1.5@facebook_api/bin/ruby_executable_hooks:15:in `<main>'

It seems that for some OS the require order is not valid. It tries to use Page before requiring it.

IF I edit this file like this:

require 'fb_graph2/page'

module FbGraph2
  class Place < Page
  end
end

everything works ok

Service Temporarily Unavailable

Hi!

I've been getting this error message for a few hours now, whenever I try to query Graph (with both fb_graph2 & koala). My guess is Facebook did something to its API recently...

500 Service Temporarily Unavailable

How to manage threads/messages in FbGraph2

It is mentioned here how to fetch messages in FbGraph.
But me.threads seems not to be a method for FbGraph2::User object.
@nov It is a critical feature from facebook and needs some more information.
What is the replacement of me.threads ?
I would create another Wiki page for threads and messages based on the response on this thread.

Accessing application access token

In FbGraph we had option to fetch access token using application configuration keys.

app = FbGraph::Application.new(facebook_app_id, :secret => facebook_secret_key)
access_token = app.get_access_token

Do we have any similar option for FbGraph2 ?

gem throwing ActiveSupport::Concern::MultipleIncludedBlocks on require

The following error occurs on linux with rvm 1.26.4, ruby 2.1.5, and rails 4.1.8:

ActiveSupport::Concern::MultipleIncludedBlocks: Cannot define multiple 'included' blocks for a Concern 
home_folder/.rvm/gems/ruby-2.1.5@project_gemset/gems/activesupport-4.1.8/lib/active_support/concern.rb:126:in `included'
project_folder/.rvm/gems/ruby-2.1.5@project_gemset/gems/fb_graph2-0.4.4/lib/fb_graph2/attribute_assigner.rb:5:in `<module:AttributeAssigner>'
project_folder/.rvm/gems/ruby-2.1.5@project_gemset/gems/fb_graph2-0.4.4/lib/fb_graph2/attribute_assigner.rb:2:in `<module:FbGraph2>'
project_folder/.rvm/gems/ruby-2.1.5@project_gemset/gems/fb_graph2-0.4.4/lib/fb_graph2/attribute_assigner.rb:1:in `<top (required)>'
home_folder/.rvm/gems/ruby-2.1.5@project_gemset/gems/activesupport-4.1.8/lib/active_support/dependencies.rb:247:in `require'
home_folder/.rvm/gems/ruby-2.1.5@project_gemset/gems/activesupport-4.1.8/lib/active_support/dependencies.rb:247:in `block in require'
home_folder/.rvm/gems/ruby-2.1.5@project_gemset/gems/activesupport-4.1.8/lib/active_support/dependencies.rb:232:in `load_dependency'
home_folder/.rvm/gems/ruby-2.1.5@project_gemset/gems/activesupport-4.1.8/lib/active_support/dependencies.rb:247:in `require'
home_folder/.rvm/gems/ruby-2.1.5@project_gemset/gems/fb_graph2-0.4.4/lib/fb_graph2.rb:53:in `block (2 levels) in <top (required)>'
home_folder/.rvm/gems/ruby-2.1.5@project_gemset/gems/fb_graph2-0.4.4/lib/fb_graph2.rb:52:in `each'
home_folder/.rvm/gems/ruby-2.1.5@project_gemset/gems/fb_graph2-0.4.4/lib/fb_graph2.rb:52:in `block in <top (required)>'
home_folder/.rvm/gems/ruby-2.1.5@project_gemset/gems/fb_graph2-0.4.4/lib/fb_graph2.rb:51:in `each'
home_folder/.rvm/gems/ruby-2.1.5@project_gemset/gems/fb_graph2-0.4.4/lib/fb_graph2.rb:51:in `<top (required)>'
home_folder/.rvm/gems/ruby-2.1.5@global/gems/bundler-1.7.6/lib/bundler/runtime.rb:76:in `require'
home_folder/.rvm/gems/ruby-2.1.5@global/gems/bundler-1.7.6/lib/bundler/runtime.rb:76:in `block (2 levels) in require'
home_folder/.rvm/gems/ruby-2.1.5@global/gems/bundler-1.7.6/lib/bundler/runtime.rb:72:in `each'
home_folder/.rvm/gems/ruby-2.1.5@global/gems/bundler-1.7.6/lib/bundler/runtime.rb:72:in `block in require'
home_folder/.rvm/gems/ruby-2.1.5@global/gems/bundler-1.7.6/lib/bundler/runtime.rb:61:in `each'
home_folder/.rvm/gems/ruby-2.1.5@global/gems/bundler-1.7.6/lib/bundler/runtime.rb:61:in `require'
home_folder/.rvm/gems/ruby-2.1.5@global/gems/bundler-1.7.6/lib/bundler.rb:133:in `require

Seems like requiring fb_graph2/attribute_assigner twice causes the problem, with the following modification everything works fine for me: https://github.com/LuckyThirteen/fb_graph2/commit/0e9f91dada7347ab42dedf45645d1d831d29a06e

Problem posting links to fanpage

Hey!
I try to post a link to fanpage using:

page.feed!(link: 'example.com/some_url')

method, and I get the following error:

#<FbGraph::InvalidRequest: GraphMethodException :: Unsupported post request.>

Now here's the thing - the link is actually posted to the fanpage.
Everything worked fine two weeks ago. Posting a message (for example) to fanpage still works as expected (tested in console).
I suppose it happens due to some changes in Graph API. Can you look at this issue and fix it?

rad_streampermission with api 2.2

Hy all,
i have an issue, my app take user's stream, and save it in my storage DB.
With api 2.x Facebook get this response:

read_stream
General
The read_stream permission is only granted for apps building a Facebook-branded client on platforms where Facebook is not already available.
For example, Android and iOS apps will not be approved for this permission. In addition, Web, Desktop, in-car and TV apps will not be granted this permission.
User_posts permission might be a viable alternative for your use case. This permission will return 1) user posts on their timeline, 2) user posts that he/she is tagged in and 3) posts on the user's timeline by other people.
If this permission would help enhance people’s experiences in your app please re-submit for review with your request for the user_posts permission.

it's possible facebook block stream in new versione api???

thanks so much.

Error validating client secret

Hi,

Anything I am doing wrong here? I am trying to post to my Facebook company page, and it works, but my access token expires constantly, so I wanted to just generate one every time this process runs.

Here's what I am doing:

app = FbGraph2::Auth.new(ID, :secret => SECRET)
app.access_token!

Thanks!

delete comment fbgraph2

comment = FbGraph2::Comment.new(ref, :access_token => access_token ).destroy
ref is Facebook ID comment ...

it's correct ??

Rails 3.2.19 activesupport incompatible versions

I'm getting the following error after doing bundle install with the fb_graph2.

Bundler could not find compatible versions for gem "activesupport":
  In Gemfile:
    fb_graph2 (>= 0) ruby depends on
      activesupport (>= 4.0) ruby

    rails (= 3.2.19) ruby depends on
      activesupport (3.2.19)

Any solution for this issue?
It seems like rails 3.2.19 is not supported by the fb_graph2 gem.

Unable to load application

When I load the application:

! Unable to load application
/usr/local/rvm/gems/ruby-1.9.3-p547/gems/fb_graph2-0.1.2/lib/fb_graph2.rb:9:in <module:FbGraph2>': undefined local variable or methoddir' for FbGraph2:Module (NameError)

How to fix it?

PS: I get the error in production (AWS). Localhost works great.

How to populate FbGraph2::User with "fields"?

I want to retrieve the currently signed in user with some of her attributes (like last_name) filled.

My code looks like this:

auth = FbGraph2::Auth.new('<app id>', '<app secret>')
user = auth.from_signed_request('<signed_request param from canvas page>').user

user = user.fetch(fields: 'id,first_name,last_name,currency,locale,email,third_party_id,is_eligible_promo')

This worked in FbGraph V1, now the last line throws:

RuntimeError: Called id for nil, which would mistakenly be 8 -- if you really wanted the id of nil, use object_id
    from /Users/luke/.rvm/gems/ruby-2.0.0-p598/gems/fb_graph2-0.5.1/lib/fb_graph2/util.rb:7:in `as_identifier'
    from /Users/luke/.rvm/gems/ruby-2.0.0-p598/gems/fb_graph2-0.5.1/lib/fb_graph2/node.rb:92:in `build_endpoint'
    from /Users/luke/.rvm/gems/ruby-2.0.0-p598/gems/fb_graph2-0.5.1/lib/fb_graph2/node.rb:61:in `block in get'
    from /Users/luke/.rvm/gems/ruby-2.0.0-p598/gems/fb_graph2-0.5.1/lib/fb_graph2/node.rb:108:in `handle_response'
    from /Users/luke/.rvm/gems/ruby-2.0.0-p598/gems/fb_graph2-0.5.1/lib/fb_graph2/node.rb:60:in `get'
    from /Users/luke/.rvm/gems/ruby-2.0.0-p598/gems/fb_graph2-0.5.1/lib/fb_graph2/node.rb:24:in `fetch'

Obviously I'm doing something wrong. But what? :)

How to fetch user info with delay time

I want to get all email from users who has already login to my site before via facebook user id. I have over 3000 users.
I use:
user = FbGraph2::User.new(uid).authenticate(token)
user.fetch
but I only access to FB API 34times, after that they return error:
FbGraph2::Exception::InvalidRequest: Unsupported get request. Please read the Graph API documentation at https://developers.facebook.com/docs/graph-api
Do we have any way to delay in each fetch function to show that we don't try to attacelpk them.
Thank you for your help

Called id for nil, which would mistakenly be 8 -- if you really wanted the id of nil, use object_id

@nov I tried to fetch an event using following codes and facing error

e = FbGraph2::Event.new("505722052901949" :access_token => "validtoken")
e.fetch

Then i tried following and got same error

me = FbGraph2::User.me("user_access_token").fetch

FYI i am using ruby 2.0.0p598 and rails 3.2.19
Here is the backtrace:

RuntimeError: Called id for nil, which would mistakenly be 8 -- if you really wanted the id of nil, use object_id
        from /home/arman/.rbenv/versions/2.0.0-p598/lib/ruby/gems/2.0.0/gems/fb_graph2-0.4.4/lib/fb_graph2/util.rb:7:in `as_identifier'
        from /home/arman/.rbenv/versions/2.0.0-p598/lib/ruby/gems/2.0.0/gems/fb_graph2-0.4.4/lib/fb_graph2/node.rb:91:in `build_endpoint'
        from /home/arman/.rbenv/versions/2.0.0-p598/lib/ruby/gems/2.0.0/gems/fb_graph2-0.4.4/lib/fb_graph2/node.rb:60:in `block in get'
        from /home/arman/.rbenv/versions/2.0.0-p598/lib/ruby/gems/2.0.0/gems/fb_graph2-0.4.4/lib/fb_graph2/node.rb:107:in `handle_response'
        from /home/arman/.rbenv/versions/2.0.0-p598/lib/ruby/gems/2.0.0/gems/fb_graph2-0.4.4/lib/fb_graph2/node.rb:59:in `get'
        from /home/arman/.rbenv/versions/2.0.0-p598/lib/ruby/gems/2.0.0/gems/fb_graph2-0.4.4/lib/fb_graph2/node.rb:23:in `fetch'
        from (irb):44
        from /home/arman/.rbenv/versions/2.0.0-p598/lib/ruby/gems/2.0.0/gems/railties-3.2.19/lib/rails/commands/console.rb:47:in `start'
        from /home/arman/.rbenv/versions/2.0.0-p598/lib/ruby/gems/2.0.0/gems/railties-3.2.19/lib/rails/commands/console.rb:8:in `start'
        from /home/arman/.rbenv/versions/2.0.0-p598/lib/ruby/gems/2.0.0/gems/railties-3.2.19/lib/rails/commands.rb:41:in `<top (required)>'
        from script/rails:6:in `require'
        from script/rails:6:in `<main>'

New FbGraph and Mutual Friends

How do I use the new way of browsing #mutal_friends
Now the HTTP query is:
me?fields=context.fields(mutual_friends.limit(10))

Photo feed is neverending

This is the method I use to consume the photo feed:

https://gist.github.com/ngw/6ced15f3ccbad9d30075

Everything works perfectly when consuming a page.feed or page.albums, but for reasons I'm not sure I completely understand Album.photos results in an infinite loop.
The problem appears to be that next keeps returning the same group of (2) photos. Is this supposed to work like this? Because I see no logic...

The total_count of the collection is empty too...

How should I work around this behaviour? Is this supposed to work like this?

How to post achievements?

The Achievements edge only allows me to collect achievements, but I cannot find a method to award a user with one...?

P.S.: We're deploying an update of our FB Game using FbGraph2 in this very moment. :)

NameError: uninitialized constant FbGraph2::Page on Capistrano deploy

Heya

I'm getting the following error when I am trying to do a deploy with Capistrano.

I've downgraded to 0.4.1 for now, and that's working.

rake stdout: Nothing written
rake stderr: rake aborted!
NameError: uninitialized constant FbGraph2::Page
/var/www/apps/repo/shared/bundle/ruby/2.1.0/gems/fb_graph2-0.4.3/lib/fb_graph2/place.rb:2:in `<module:FbGraph2>'
/var/www/apps/repo/shared/bundle/ruby/2.1.0/gems/fb_graph2-0.4.3/lib/fb_graph2/place.rb:1:in `<top (required)>'
/var/www/apps/repo/shared/bundle/ruby/2.1.0/gems/fb_graph2-0.4.3/lib/fb_graph2.rb:53:in `block (2 levels) in <top (required)>'
/var/www/apps/repo/shared/bundle/ruby/2.1.0/gems/fb_graph2-0.4.3/lib/fb_graph2.rb:52:in `each'
/var/www/apps/repo/shared/bundle/ruby/2.1.0/gems/fb_graph2-0.4.3/lib/fb_graph2.rb:52:in `block in <top (required)>'
/var/www/apps/repo/shared/bundle/ruby/2.1.0/gems/fb_graph2-0.4.3/lib/fb_graph2.rb:51:in `each'
/var/www/apps/repo/shared/bundle/ruby/2.1.0/gems/fb_graph2-0.4.3/lib/fb_graph2.rb:51:in `<top (required)>'
/usr/local/rvm/gems/ruby-2.1.2@global/gems/bundler-1.6.2/lib/bundler/runtime.rb:76:in `require'
/usr/local/rvm/gems/ruby-2.1.2@global/gems/bundler-1.6.2/lib/bundler/runtime.rb:76:in `block (2 levels) in require'
/usr/local/rvm/gems/ruby-2.1.2@global/gems/bundler-1.6.2/lib/bundler/runtime.rb:72:in `each'
/usr/local/rvm/gems/ruby-2.1.2@global/gems/bundler-1.6.2/lib/bundler/runtime.rb:72:in `block in require'
/usr/local/rvm/gems/ruby-2.1.2@global/gems/bundler-1.6.2/lib/bundler/runtime.rb:61:in `each'
/usr/local/rvm/gems/ruby-2.1.2@global/gems/bundler-1.6.2/lib/bundler/runtime.rb:61:in `require'
/usr/local/rvm/gems/ruby-2.1.2@global/gems/bundler-1.6.2/lib/bundler.rb:132:in `require'
/var/www/apps/repo/releases/20150112163634/config/application.rb:7:in `<top (required)>'
/var/www/apps/repo/releases/20150112163634/Rakefile:6:in `require'
/var/www/apps/repo/releases/20150112163634/Rakefile:6:in `<top (required)>'

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.