Don't require a facebook yml

This commit is contained in:
Raphael 2010-10-05 16:57:22 -07:00
parent 6723a51149
commit 37fb2bfd32
3 changed files with 22 additions and 29 deletions

View file

@ -116,7 +116,6 @@ GEM
rack (>= 1.0.0) rack (>= 1.0.0)
rack-test (>= 0.5.4) rack-test (>= 0.5.4)
selenium-webdriver (>= 0.0.3) selenium-webdriver (>= 0.0.3)
columnize (0.3.1)
crack (0.1.8) crack (0.1.8)
cucumber (0.9.0) cucumber (0.9.0)
builder (~> 2.1.2) builder (~> 2.1.2)
@ -152,7 +151,6 @@ GEM
i18n (0.4.1) i18n (0.4.1)
json (1.4.6) json (1.4.6)
json_pure (1.4.6) json_pure (1.4.6)
linecache (0.43)
mail (2.2.6.1) mail (2.2.6.1)
activesupport (>= 2.3.6) activesupport (>= 2.3.6)
mime-types mime-types
@ -201,7 +199,6 @@ GEM
rake (>= 0.8.4) rake (>= 0.8.4)
thor (~> 0.14.0) thor (~> 0.14.0)
rake (0.8.7) rake (0.8.7)
redgreen (1.2.2)
rest-client (1.6.1) rest-client (1.6.1)
mime-types (>= 1.16) mime-types (>= 1.16)
rspec (2.0.0.beta.22) rspec (2.0.0.beta.22)
@ -217,11 +214,6 @@ GEM
rspec-rails (2.0.0.beta.17) rspec-rails (2.0.0.beta.17)
rspec (>= 2.0.0.beta.14) rspec (>= 2.0.0.beta.14)
webrat (>= 0.7.0) webrat (>= 0.7.0)
ruby-debug (0.10.3)
columnize (>= 0.1)
ruby-debug-base (~> 0.10.3.0)
ruby-debug-base (0.10.3)
linecache (>= 0.3)
rubyzip (0.9.4) rubyzip (0.9.4)
selenium-webdriver (0.0.28) selenium-webdriver (0.0.28)
ffi (>= 0.6.1) ffi (>= 0.6.1)
@ -278,11 +270,9 @@ DEPENDENCIES
pubsubhubbub pubsubhubbub
rails (= 3.0.0) rails (= 3.0.0)
redfinger! redfinger!
redgreen
roxml! roxml!
rspec (>= 2.0.0.beta.17) rspec (>= 2.0.0.beta.17)
rspec-rails (= 2.0.0.beta.17) rspec-rails (= 2.0.0.beta.17)
ruby-debug
sprinkle! sprinkle!
thin thin
webmock webmock

View file

@ -5,8 +5,9 @@
%h2 Services %h2 Services
%h3 Facebook - if FACEBOOK
%p %h3 Facebook
%p
- if @logged_in - if @logged_in
= connected_fb_as(@access_token) = connected_fb_as(@access_token)

View file

@ -7,13 +7,15 @@ require File.expand_path('../application', __FILE__)
Haml::Template.options[:format] = :html5 Haml::Template.options[:format] = :html5
Haml::Template.options[:escape_html] = true Haml::Template.options[:escape_html] = true
# Load facebook connection application credentials if File.exists?(File.expand_path("./config/fb_config.yml"))
fb_config = YAML::load(File.open(File.expand_path("./config/fb_config.yml"))) # Load facebook connection application credentials
FB_API_KEY = fb_config['fb_api_key'] fb_config = YAML::load(File.open(File.expand_path("./config/fb_config.yml")))
FB_SECRET = fb_config['fb_secret'] FB_API_KEY = fb_config['fb_api_key']
FB_APP_ID = fb_config['fb_app_id'] FB_SECRET = fb_config['fb_secret']
HOST = fb_config['host'] FB_APP_ID = fb_config['fb_app_id']
HOST = fb_config['host']
FACEBOOK = true
end
# Initialize the rails application # Initialize the rails application
Diaspora::Application.initialize! Diaspora::Application.initialize!